mirror of
https://github.com/fluencelabs/trust-graph-test
synced 2025-05-13 11:51:39 +00:00
11 lines
240 B
Rust
11 lines
240 B
Rust
use std::time::{Duration, SystemTime, UNIX_EPOCH};
|
|
|
|
pub fn current_time() -> Duration {
|
|
Duration::from_secs(
|
|
SystemTime::now()
|
|
.duration_since(UNIX_EPOCH)
|
|
.unwrap()
|
|
.as_secs() as u64,
|
|
)
|
|
}
|