Add random chars cmd (#2782)

This commit is contained in:
Chris Gillespie
2020-12-08 09:43:46 -08:00
committed by GitHub
parent 9c7b25134b
commit af2f064f42
7 changed files with 117 additions and 1 deletions

View File

@ -232,7 +232,9 @@ pub(crate) use prev::Previous;
pub(crate) use pwd::Pwd;
#[cfg(feature = "uuid_crate")]
pub(crate) use random::RandomUUID;
pub(crate) use random::{Random, RandomBool, RandomDecimal, RandomDice, RandomInteger};
pub(crate) use random::{
Random, RandomBool, RandomChars, RandomDecimal, RandomDice, RandomInteger,
};
pub(crate) use range::Range;
pub(crate) use reduce::Reduce;
pub(crate) use reject::Reject;