mirror of
https://github.com/Tribufu/TribufuRust
synced 2026-08-07 11:56:22 +00:00
10 lines
220 B
Rust
10 lines
220 B
Rust
// Copyright (c) Tribufu. All Rights Reserved
|
|
|
|
use tribufu::*;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let api = TribufuApi::default();
|
|
let games = api.get_games(Some(1)).await.unwrap();
|
|
println!("{:?}", games);
|
|
}
|