Joseph T. Lyons 306dc89ede
Add bool subcommand to random (#2061)
* 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`
2020-06-26 16:51:05 +12:00

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;