pub trait ApplicationVerifier: Send + Sync {
// Required methods
fn verify(&self) -> AuthResult<String>;
fn verifier_type(&self) -> &str;
}pub trait ApplicationVerifier: Send + Sync {
// Required methods
fn verify(&self) -> AuthResult<String>;
fn verifier_type(&self) -> &str;
}