jnc_auth_service 0.1.0

Test of cargo publishing an auth service
Documentation
1
2
3
4
5
6
7
8
9
10
pub fn login(creds: models::Credentials) {
    // authenticate...
    crate::database::get_user();
}

pub fn logout() {
    // log out...
}

pub mod models;