blob: 5fa026a2246b01e448e9b63ab6926a73e7b0656b (
plain) (
blame)
1
2
3
4
5
6
|
use crate::Event;
pub type Subscription<T> = iced_core::Subscription<Input, T>;
pub type Input = futures::channel::mpsc::Receiver<Event>;
pub use iced_core::subscription::Connection;
|