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()
        .update_token(1, 1, Some(Some("PC Edge".to_owned())))
        .await;

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