diff options
| author | Botahamec <botahamec@outlook.com> | 2022-01-16 16:09:54 -0500 |
|---|---|---|
| committer | Botahamec <botahamec@outlook.com> | 2022-01-16 16:09:54 -0500 |
| commit | 25a361f50728b2612c96c63594eb920f7030c5f5 (patch) | |
| tree | b759974bfbf2568e694fbe19eac557c564ab1393 /src/lib.rs | |
| parent | f2c58b71914572b0fb7082cbeef2d639ec7fcd53 (diff) | |
added a simple time type
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |
