nushell/crates/nu-command/src/random/mod.rs
Jae-Heon Ji 6f53912655
Fix: add missing bind commands (#477)
* chore(random): update naming convention

* fix: add missing bind commands
2021-12-12 21:42:04 +02:00

15 lines
413 B
Rust

mod bool;
mod chars;
mod command;
mod decimal;
mod dice;
mod integer;
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::integer::SubCommand as RandomInteger;
pub use self::uuid::SubCommand as RandomUuid;
pub use command::RandomCommand as Random;