user-service 0.4.1

A user management microservice.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use utils::*;

mod utils;

#[tokio::main]
async fn main() {
    let result = client()
        .validate_user(
            "example@email.com".to_owned(),
            "SuperSecret50285$#".to_owned(),
        )
        .await;

    println!("{:?}", result);
}