6 lines
98 B
Rust
6 lines
98 B
Rust
use uuid::Uuid;
|
|
|
|
pub fn gen_uuid() -> String {
|
|
format!("{:032x}", Uuid::new_v4().as_u128())
|
|
}
|