BasicOIDC/src/utils/time.rs

10 lines
199 B
Rust
Raw Normal View History

2022-04-01 20:51:33 +00:00
use std::time::{SystemTime, UNIX_EPOCH};
/// Get the current time since epoch
pub fn time() -> u64 {
2022-04-03 13:50:49 +00:00
SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap()
.as_secs()
}