1 2 3 4 5
use chrono::{SecondsFormat, Utc}; pub(super) fn now_iso8601() -> String { Utc::now().to_rfc3339_opts(SecondsFormat::Micros, true) }