zbus-lib 0.1.6

zbus rust rpc client and server
Documentation
1
2
3
4
5
6
7
8
9
10
use uid::Uuid;

pub fn gerate_uuid() -> String {
    let my_uuid = Uuid::new_v4();
    format!("{}", my_uuid).replacen("-", "", 4)
}

fn main() {
    println!("{}",gerate_uuid())
}