auth_service2 0.1.0

Example auth service
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod models;
pub fn login(creds: models::Credentials) {
    //authenticate
    crate::database::get_user();
}

fn logout() {
    //log user out
}