mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-23 16:14:53 +01:00
6 lines
143 B
Rust
6 lines
143 B
Rust
use rand::distributions::{Alphanumeric, DistString};
|
|
|
|
pub fn gen_id() -> String {
|
|
Alphanumeric.sample_string(&mut rand::thread_rng(), 5)
|
|
}
|