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

16 lines
377 B
Rust
Raw Normal View History

mod bool;
2021-12-01 18:58:10 +00:00
mod chars;
mod command;
mod decimal;
2021-12-04 17:14:24 +00:00
mod dice;
mod integer;
mod uuid;
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;
2021-12-04 17:14:24 +00:00
pub use self::dice::SubCommand as Dice;
pub use self::integer::SubCommand as Integer;
pub use self::uuid::SubCommand as Uuid;
pub use command::RandomCommand as Random;