use rsip_derives::{IntoParam, NewType};
#[derive(NewType, IntoParam, Debug, PartialEq, Eq, Clone)]
pub struct User(String);
#[cfg(feature = "test-utils")]
impl testing_utils::Randomize for User {
fn random() -> Self {
Self(testing_utils::sample(&["phone", "ip", &testing_utils::rand_str_of(5)]).to_string())
}
}