auth_service_gleven 0.1.0

auth service example
Documentation
1
2
3
4
5
6
7
8
9
10
pub struct Credentials {
    username: String,
    password: String,
}

impl Credentials {
    pub fn new(username: String, password: String) -> Self {
        Self { username, password }
    }
}