summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2021-12-27 16:50:28 -0500
committerBotahamec <botahamec@outlook.com>2021-12-27 16:50:28 -0500
commit9bb6f9a5b3b96f5797d870e01a799ae0553058af (patch)
treec905943cfac464efc3ac644f5f5319d5f6dbf336 /src/lib.rs
parentdc08e7b94daaf33e06f2cfa2a146cac0d5901f27 (diff)
Add weekdays
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 c1bd251..fdfeb5c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,7 +1,9 @@
#![doc = include_str!("../README.md")]
mod month;
+mod weekday;
mod year;
pub use month::Month;
+pub use weekday::Weekday;
pub use year::Year;