MyAuthServices 0.1.0

Example auth services
Documentation
1
2
3
4
5
6
7
8
9
10
use MyAuthServices::{Credentials};

fn main() {
    let cred = Credentials {
        username: "admin".to_owned(),
        password: "password".to_owned(),
    };

    MyAuthServices::authenticate(cred);
}