hyperlane_time/lib.rs
1//! hyperlane-time
2//!
3//! A library for fetching the current time based on the system's locale settings.
4
5pub(crate) mod time;
6
7pub use time::r#fn::*;
8
9pub(crate) use time::r#enum::from_env_var;
10
11pub(crate) use std::{
12 env, fmt,
13 fmt::Write,
14 str::FromStr,
15 time::{Duration, SystemTime, UNIX_EPOCH},
16};