1pub mod hashing; 2use uuid::Uuid; 3pub mod datetime; 4 5pub fn get_uuid() -> String { 6 return Uuid::new_v4().to_hyphenated().to_string(); 7}