1//! It contains a static variable that is set to the time at which
2//! the application started.
3use std::sync::LazyLock;
4use std::time::SystemTime;
56/// The time at which the application started.
7pub static TIME_AT_APP_START: LazyLock<SystemTime> = LazyLock::new(SystemTime::now);