user-service 0.4.1

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

mod utils;

#[tokio::main]
async fn main() {
    let result = client()
        .validate_token(1, "ALKHEJBklreglalllWRglkoLWEkl".to_owned())
        .await;

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