//! Wall-clock boundary for monotonic and system time access.
//!
//! Production adapters that read the host clock live here so app and
//! runtime orchestration can stay free of direct `Instant::now()` and
//! `SystemTime::now()` calls. Use `RealClock` to wire production code and
//! mock the [`Clock`] trait in tests for deterministic time control.
use ;
/// Provides monotonic and system-time values used by session refresh logic,
/// runtime render-throttle accounting, and clipboard image timestamps.
pub
/// Production clock backed by `std::time`.
pub ;