auth_service_dot 0.1.0

Sample Auth service
Documentation
1
2
3
4
5
6
7
8
9
10
pub enum Status {
    Connected,
    Interrupted,
}

pub fn get_user() {}

pub fn connect_to_database() -> Status {
    return Status::Connected;
}