bbk47_toolbox/
uuid.rs

1use uuid::Uuid;
2
3pub fn get_uuidv4() -> String {
4    let uuid = Uuid::new_v4();
5    let uuid_str = uuid.to_string().replace("-", "");
6    return uuid_str;
7}