auth_service_gleven 0.1.0

auth service example
Documentation
1
2
3
4
5
6
use auth_service_gleven::Credentials;

fn main() {
    let creds = Credentials::new(String::from("username"), String::from("password"));
    auth_service_gleven::authenticate(creds);
}