jnc_auth_service 0.1.0

Test of cargo publishing an auth service
Documentation
1
2
3
4
5
6
7
8
9
10
use jnc_auth_service::Credentials;

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

    jnc_auth_service::authenticate(creds);
}