2019-12-10 03:43:00 +01:00
|
|
|
use crate::{Event, Hasher};
|
2019-12-08 08:21:26 +01:00
|
|
|
|
2019-12-10 03:43:00 +01:00
|
|
|
pub type Subscription<T> = iced_core::Subscription<Hasher, Input, T>;
|
2019-12-08 08:21:26 +01:00
|
|
|
pub type Input = futures::channel::mpsc::Receiver<Event>;
|
|
|
|
|
|
2019-12-10 03:43:00 +01:00
|
|
|
pub use iced_core::subscription::Recipe;
|