auth_bhai 0.1.0

Simple auth service for learning
Documentation
1
2
3
4
5
6
7
8
9
10
11
use auth_bhai::Credentials;

fn main() {

    let creds = Credentials {
        username: "rohanshukla".to_owned(),
        password: "pass123".to_owned()    
    };

    auth_bhai::authenticate(creds);
}