bbk47_toolbox 0.1.0

bbk47 tools
Documentation
1
2
3
4
5
6
7
use uuid::Uuid;

pub fn get_uuidv4() -> String {
    let uuid = Uuid::new_v4();
    let uuid_str = uuid.to_string().replace("-", "");
    return uuid_str;
}