1use uuid::Uuid; 2pub fn generate_id_for(domain: &str) -> String { 3 format!("{}-{}", domain, Uuid::new_v4()) 4}