//! Externally supplied time for deterministic application services.
use SystemTime;
/// Supplies wall-clock time without making core services read the system clock.
///
/// Production runtimes can implement this trait with `SystemTime::now`, while
/// tests use a fixed or manually advanced clock.