Skip to main content

hyperlane_time/
lib.rs

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