Files
imphnen-backend-service/imphnen-utils/src/generate_date.rs
T

7 lines
122 B
Rust
Raw Normal View History

2025-03-21 05:36:00 +07:00
use chrono::{DateTime, Utc};
pub fn get_iso_date() -> String {
let now: DateTime<Utc> = Utc::now();
now.to_rfc3339()
}