1//! hyperlane-time
2//!
3//! A library for fetching the current time based on the system's locale settings.
45mod r#enum;
6mod r#fn;
7mod r#impl;
89pub use r#fn::*;
1011use r#enum::*;
1213use std::{
14 env, fmt,
15 fmt::Write,
16 str::FromStr,
17 time::{Duration, SystemTime, UNIX_EPOCH},
18};