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

7 lines
178 B
Rust

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