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

18 lines
472 B
Rust
Raw Normal View History

mod bool;
2021-12-01 18:58:10 +00:00
mod chars;
mod decimal;
2021-12-04 17:14:24 +00:00
mod dice;
mod float;
mod integer;
mod random_;
mod uuid;
pub use self::bool::SubCommand as RandomBool;
pub use self::chars::SubCommand as RandomChars;
pub use self::decimal::SubCommand as RandomDecimal;
pub use self::dice::SubCommand as RandomDice;
pub use self::float::SubCommand as RandomFloat;
pub use self::integer::SubCommand as RandomInteger;
pub use self::uuid::SubCommand as RandomUuid;
pub use random_::RandomCommand as Random;