nushell/crates/nu-command/src/random/mod.rs

10 lines
218 B
Rust
Raw Normal View History

mod bool;
2021-12-01 18:58:10 +00:00
mod chars;
mod command;
mod decimal;
pub use self::bool::SubCommand as Bool;
2021-12-01 18:58:10 +00:00
pub use self::chars::SubCommand as Chars;
pub use self::decimal::SubCommand as Decimal;
pub use command::RandomCommand as Random;