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