Skip to main content

ralph_workflow/logging/
timestamp.rs

1use chrono::Utc;
2
3pub fn get_current_timestamp() -> String {
4    Utc::now().to_rfc3339()
5}