pub trait Clock: Send + Sync { // Required method fn now_iso(&self) -> String; }
Clock abstraction so tests can pin timestamps.
Return the current RFC 3339 UTC timestamp string (millisecond precision).