Cal command (#429)

* Add calendar (cal) command

* Move options into arguments to avoid clippy warnings

* Remove commented line

* Fix formatting issues

* Fix clippy warning
This commit is contained in:
onthebridgetonowhere
2021-12-04 18:15:03 +01:00
committed by GitHub
parent 82aa84706e
commit c6aff972da
4 changed files with 401 additions and 1 deletions

View File

@ -1,3 +1,4 @@
mod calendar;
mod conversions;
mod core_commands;
mod date;
@ -18,7 +19,7 @@ mod viewers;
#[cfg(feature = "dataframe")]
mod dataframe;
pub use calendar::*;
pub use conversions::*;
pub use core_commands::*;
pub use date::*;