autopulse_utils/
generate_uuid.rs

1pub fn generate_uuid() -> String {
2    let uuid = uuid::Uuid::new_v4();
3    uuid.to_string()
4}