nushell/crates/nu-command/src/random/mod.rs
Jae-Heon Ji 9548e5ef5b
feat(random): add random-integer and random-uuid (#440)
* feat(randome): add random-integer

* feat(random): add random-uuid
2021-12-06 06:22:50 +13:00

15 lines
377 B
Rust

mod bool;
mod chars;
mod command;
mod decimal;
mod dice;
mod integer;
mod uuid;
pub use self::bool::SubCommand as Bool;
pub use self::chars::SubCommand as Chars;
pub use self::decimal::SubCommand as Decimal;
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;