Documentation
1
2
3
4
5
6
7
8
9
pub fn login(creds: models::Credentials) {
    crate::database::get_user()
}

fn logout() {

}

pub mod models;