1 2 3 4 5
use chrono::{DateTime, Utc}; pub trait Clock: Send + Sync { fn now(&self) -> DateTime<Utc>; }