mirror of
https://github.com/nushell/nushell
synced 2025-01-08 19:29:08 +00:00
1c37f4b958
# Description/User-Facing Changes Creates a new `random binary <LENGTH>` command, which returns random bytes. Resolve #13500
17 lines
457 B
Rust
17 lines
457 B
Rust
mod binary;
|
|
mod bool;
|
|
mod chars;
|
|
mod dice;
|
|
mod float;
|
|
mod int;
|
|
mod random_;
|
|
mod uuid;
|
|
|
|
pub use self::binary::SubCommand as RandomBinary;
|
|
pub use self::bool::SubCommand as RandomBool;
|
|
pub use self::chars::SubCommand as RandomChars;
|
|
pub use self::dice::SubCommand as RandomDice;
|
|
pub use self::float::SubCommand as RandomFloat;
|
|
pub use self::int::SubCommand as RandomInt;
|
|
pub use self::uuid::SubCommand as RandomUuid;
|
|
pub use random_::RandomCommand as Random;
|