nushell/crates/nu-cli/src/commands/random/mod.rs
Joseph T. Lyons 9876169f5d
Add dice subcommand to random command (#2082)
* Add dice subcommand to random command

* Update random dice test name

* Stream results of random dice

* Thanks Clippy!
2020-06-30 16:12:51 +12:00

12 lines
224 B
Rust

pub mod command;
pub mod bool;
pub mod dice;
pub mod uuid;
pub use command::Command as Random;
pub use self::bool::SubCommand as RandomBool;
pub use dice::SubCommand as RandomDice;
pub use uuid::SubCommand as RandomUUID;