summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2021-12-27 17:07:44 -0500
committerBotahamec <botahamec@outlook.com>2021-12-27 17:07:44 -0500
commitf2c58b71914572b0fb7082cbeef2d639ec7fcd53 (patch)
tree3a9f265b7be310a270d2f4d8e4cfe416eb4589aa /src/lib.rs
parent561ec37ecfdb0cca9f3f0bfcab93e923bb9727be (diff)
Added a super simple date structure
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 fdfeb5c..4fbfaf9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,9 +1,11 @@
#![doc = include_str!("../README.md")]
+mod date;
mod month;
mod weekday;
mod year;
+pub use date::Date;
pub use month::Month;
pub use weekday::Weekday;
pub use year::Year;