time/
lib.rs

1#![no_std]
2
3extern crate alloc;
4
5mod error;
6mod manager;
7
8pub use error::*;
9pub use manager::*;
10
11pub type Duration = core::time::Duration;