//! [`Clock`] — abstraction over "current time".
//!
//! Inject a fake clock in tests to assert that timestamps are recorded
//! deterministically without depending on `OffsetDateTime::now_utc()`.
use OffsetDateTime;
/// Source of the current wall-clock time, in UTC.
/// Production [`Clock`] that delegates to [`OffsetDateTime::now_utc`].
;