1
2
3
4
5
6
7
pub mod basic;
pub mod oauth2;

pub enum AuthenType {
    Basic(String),
    Oauth2(String),
}