idkthings_core 0.1.1

core stuff for idkthings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
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")
    }
}