runeterra-game-api-0.1.0 doesn't have any documentation.
Runeterra Game Client API
Proxy API for the Legends of Runeterra Game Client API
Examples
use ;
async
Proxy API for the Legends of Runeterra Game Client API
use runeterra_game_api::{Client, DEFAULT_PORT};
#[tokio::main]
async fn main() {
let client = Client::new(DEFAULT_PORT);
let result = client.get_static_decklist().await;
dbg!(&result);
}