auth_service 0.1.1

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

fn main() {
    let creds = Credentials {
        username: "letsgetrusty".to_owned(),
        password: "password123".to_owned(),
    };

    auth_service::authenticate(creds);
}