summaryrefslogblamecommitdiffstats
path: root/native/src/subscription.rs
blob: 4d000490491fdc30ef41dce0cb421f18fb339984 (plain) (tree)
1
2
3
4
5
6
                           
 
                                                                     

                                                         
                                        
use crate::{Event, Hasher};

pub type Subscription<T> = iced_core::Subscription<Hasher, Input, T>;
pub type Input = futures::channel::mpsc::Receiver<Event>;

pub use iced_core::subscription::Recipe;