user-service 0.4.1

A user management microservice.
Documentation
use utils::*;

mod utils;

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

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