mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
5 lines
149 B
Rust
5 lines
149 B
Rust
use std::time::{self, SystemTime};
|
|
|
|
pub fn timestamp_ms() -> u64 {
|
|
SystemTime::now().duration_since(time::UNIX_EPOCH).unwrap().as_millis() as u64
|
|
}
|