forked from extern/nushell
* Add dice subcommand to random command * Update random dice test name * Stream results of random dice * Thanks Clippy!
12 lines
224 B
Rust
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;
|