use utils::*; mod utils; #[tokio::main] async fn main() { let result = client() .validate_user( "example@email.com".to_owned(), "SuperSecret50285$#".to_owned(), ) .await; println!("{:?}", result); }