user-service 0.4.1

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

mod utils;

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

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