mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 23:44:38 +00:00
7 lines
178 B
Rust
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);
|
|
}
|