summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2022-01-16 16:09:54 -0500
committerBotahamec <botahamec@outlook.com>2022-01-16 16:09:54 -0500
commit25a361f50728b2612c96c63594eb920f7030c5f5 (patch)
treeb759974bfbf2568e694fbe19eac557c564ab1393 /src/lib.rs
parentf2c58b71914572b0fb7082cbeef2d639ec7fcd53 (diff)
added a simple time type
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4fbfaf9..7fee16c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,10 +2,12 @@
mod date;
mod month;
+mod time;
mod weekday;
mod year;
pub use date::Date;
pub use month::Month;
+pub use time::Time;
pub use weekday::Weekday;
pub use year::Year;