use std::fmt::{Display, Formatter};
pub type AuthResult<T> = Result<T, AuthError>;
#[derive(Clone, Default, Debug)]
pub struct AuthError {}
impl Display for AuthError {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", "auth error")
}
}