mirror of
https://github.com/nushell/nushell
synced 2025-01-10 04:09:09 +00:00
9548e5ef5b
* feat(randome): add random-integer * feat(random): add random-uuid
15 lines
377 B
Rust
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;
|