auth_service2 0.1.0

Example auth service
Documentation
1
2
3
4
5
6
7
8
9
use auth_service2::{Credentials};
fn main() {
    let creds = Credentials{
        username: "bob".to_owned(),
        password: "asdfr".to_owned(),
    };
    auth_service2::authenticate(creds);

}