time/
lib.rs

1mod error;
2mod manager;
3
4pub use error::*;
5pub use manager::*;
6
7pub type Duration = core::time::Duration;