use rsip_derives::{IntoParam, NewType};
#[derive(NewType, IntoParam, Debug, PartialEq, Eq, Clone)]
pub struct Ttl(String);
#[cfg(feature = "test-utils")]
impl testing_utils::Randomize for Ttl {
fn random() -> Self {
Self(testing_utils::rand_num_from(1..=100).to_string())
}
}