mirror of
https://github.com/danbulant/nushell
synced 2026-06-12 03:01:04 +00:00
19 lines
469 B
Rust
19 lines
469 B
Rust
pub mod command;
|
|
|
|
pub mod bool;
|
|
pub mod chars;
|
|
pub mod decimal;
|
|
pub mod dice;
|
|
pub mod integer;
|
|
#[cfg(feature = "uuid_crate")]
|
|
pub mod uuid;
|
|
|
|
pub use command::Command as Random;
|
|
|
|
pub use self::bool::SubCommand as RandomBool;
|
|
pub use chars::SubCommand as RandomChars;
|
|
pub use decimal::SubCommand as RandomDecimal;
|
|
pub use dice::SubCommand as RandomDice;
|
|
pub use integer::SubCommand as RandomInteger;
|
|
#[cfg(feature = "uuid_crate")]
|
|
pub use uuid::SubCommand as RandomUUID;
|