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