yeahyf_auth_service 0.1.0

yeahyf example
Documentation
1
2
3
4
5
6
7
8
9
use yeahyf_auth_service::Credentials;

fn main() {
    let cred = Credentials {
        user: String::from("value"),
        password: String::from(""),
    };
    yeahyf_auth_service::authenticate(cred);
}