6 lines
171 B
Rust
6 lines
171 B
Rust
|
use std::time::{SystemTime, UNIX_EPOCH};
|
||
|
|
||
|
/// Get the current time since epoch
|
||
|
pub fn time() -> u64 {
|
||
|
SystemTime::now().duration_since(UNIX_EPOCH).unwrap().as_secs()
|
||
|
}
|