1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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); }