mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-06-29 12:39:26 +00:00
7 lines
150 B
Rust
7 lines
150 B
Rust
|
|
pub fn now() -> u64 {
|
||
|
|
std::time::SystemTime::now()
|
||
|
|
.duration_since(std::time::UNIX_EPOCH)
|
||
|
|
.unwrap()
|
||
|
|
.as_millis() as u64
|
||
|
|
}
|