Files
yaak-mountain-loop/src-tauri/yaak-plugins/src/util.rs
Gregory Schier cfbfd66eef Reformat project
2025-12-13 08:10:12 -08:00

7 lines
154 B
Rust

use rand::Rng;
use rand::distr::Alphanumeric;
pub fn gen_id() -> String {
rand::rng().sample_iter(&Alphanumeric).take(5).map(char::from).collect()
}