mirror of
https://github.com/nushell/nushell
synced 2025-01-10 04:09:09 +00:00
2dd32c2b88
* renamed some files * clippy * update tests
15 lines
413 B
Rust
15 lines
413 B
Rust
mod bool;
|
|
mod chars;
|
|
mod decimal;
|
|
mod dice;
|
|
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::integer::SubCommand as RandomInteger;
|
|
pub use self::uuid::SubCommand as RandomUuid;
|
|
pub use random_::RandomCommand as Random;
|