use chrono::{DateTime, NaiveDateTime, Utc}; 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() } /// Format unix timestamp to a human-readable string pub fn fmt_time(timestamp: u64) -> String { // Create a NaiveDateTime from the timestamp let naive = NaiveDateTime::from_timestamp_opt(timestamp as i64, 0).expect("Failed to parse timestamp!"); // Create a normal DateTime from the NaiveDateTime let datetime: DateTime = DateTime::from_utc(naive, Utc); // Format the datetime how you want datetime.format("%Y-%m-%d %H:%M:%S").to_string() }