auth_rust 0.1.0

Simple Rust Authentication
Documentation
1
2
3
4
5
6
7
8
9
use auth_rust::AuthCredentials;

fn main() {
    let credentials = AuthCredentials {
        username: "Daniel".to_owned(),
        password: "Babalola".to_owned(),
    };
    auth_rust::authenticate(credentials)
}