mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-18 15:33:52 +01:00
7 lines
154 B
Rust
7 lines
154 B
Rust
use rand::distr::Alphanumeric;
|
|
use rand::Rng;
|
|
|
|
pub fn gen_id() -> String {
|
|
rand::rng().sample_iter(&Alphanumeric).take(5).map(char::from).collect()
|
|
}
|