14 lines
302 B
Rust
14 lines
302 B
Rust
//! 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::*;
|