mirror of
https://github.com/nushell/nushell
synced 2025-01-21 09:34:39 +00:00
c6aff972da
* Add calendar (cal) command * Move options into arguments to avoid clippy warnings * Remove commented line * Fix formatting issues * Fix clippy warning
42 lines
745 B
Rust
42 lines
745 B
Rust
mod calendar;
|
|
mod conversions;
|
|
mod core_commands;
|
|
mod date;
|
|
mod default_context;
|
|
mod env;
|
|
mod example_test;
|
|
mod experimental;
|
|
mod filesystem;
|
|
mod filters;
|
|
mod formats;
|
|
mod math;
|
|
mod platform;
|
|
mod random;
|
|
mod shells;
|
|
mod strings;
|
|
mod system;
|
|
mod viewers;
|
|
|
|
#[cfg(feature = "dataframe")]
|
|
mod dataframe;
|
|
pub use calendar::*;
|
|
pub use conversions::*;
|
|
pub use core_commands::*;
|
|
pub use date::*;
|
|
pub use default_context::*;
|
|
pub use env::*;
|
|
pub use example_test::test_examples;
|
|
pub use experimental::*;
|
|
pub use filesystem::*;
|
|
pub use filters::*;
|
|
pub use formats::*;
|
|
pub use math::*;
|
|
pub use platform::*;
|
|
pub use random::*;
|
|
pub use shells::*;
|
|
pub use strings::*;
|
|
pub use system::*;
|
|
pub use viewers::*;
|
|
|
|
#[cfg(feature = "dataframe")]
|
|
pub use dataframe::*;
|