blob: 98a800ac1eda93722153a0907733a2a2b28d5673 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//! Listen and react to time.
pub use crate::core::time::*;
#[allow(unused_imports)]
#[cfg_attr(
docsrs,
doc(cfg(any(
feature = "tokio",
feature = "async-std",
feature = "smol",
target_arch = "wasm32"
)))
)]
pub use iced_futures::backend::default::time::*;
|