use serde::Deserialize;
#[derive(Clone, Deserialize, Debug)]
pub struct Guard {
}
impl Guard {
pub fn validate(&self) -> bool {
true
}
}
impl std::fmt::Display for Guard {
fn fmt(&self, _f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
Ok(())
}
}