1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#[cfg(feature = "times_schedulable")] pub mod schedulable; pub mod types; /// 时间相关 pub type Timestamp = u64; // 时间戳 纳秒 pub type Duration = u64; // 时间跨度 纳秒 #[inline] pub fn now() -> Timestamp { ic_cdk::api::time() }