Documentation
1
2
3
4
5
6
7
8
9
10
use auth_services::{Credentials};

fn main() {
    let creds = Credentials {
        username: "anis".to_ascii_lowercase(),
        password: "pass".to_ascii_lowercase()
    };

    auth_services::authenticate(creds)
}