1 2 3 4 5 6 7 8
//! Session runtime clock helpers. pub(super) fn now_ms() -> u64 { std::time::SystemTime::now() .duration_since(std::time::UNIX_EPOCH) .map(|d| d.as_millis() as u64) .unwrap_or(0) }