mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 10:44:18 +00:00
11 lines
253 B
Rust
11 lines
253 B
Rust
// Copyright (c) Tribufu. All Rights Reserved
|
|
|
|
use tribufu::*;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let api = TribufuApi::with_client_from_env().unwrap_or_default();
|
|
let games = api.get_games(Some(1)).await.unwrap();
|
|
println!("{:?}", games);
|
|
}
|