mirror of
https://github.com/nushell/nushell.git
synced 2025-05-29 14:21:45 +02:00
* Add bool subcommand to random * Fix function name copy paste error * Fix issue 2062: allow deserialization of a decimal * Add bias flag to `random bool`
8 lines
168 B
Rust
8 lines
168 B
Rust
pub mod bool;
|
|
pub mod command;
|
|
pub mod uuid;
|
|
|
|
pub use self::bool::SubCommand as RandomBool;
|
|
pub use command::Command as Random;
|
|
pub use uuid::SubCommand as RandomUUID;
|