1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00
azalea/azalea-auth/examples/auth.rs

7 lines
201 B
Rust

#[tokio::main]
async fn main() {
let auth_result = azalea_auth::auth("example@example.com", azalea_auth::AuthOpts::default())
.await
.unwrap();
println!("{:?}", auth_result);
}