| Crates.io | runeterra-game-api |
| lib.rs | runeterra-game-api |
| version | 0.1.0 |
| created_at | 2019-12-20 14:17:26.246453+00 |
| updated_at | 2019-12-20 14:17:26.246453+00 |
| description | Legends of Runeterra Game Client API |
| homepage | https://github.com/iulianR/runeterra-deck-tracker/tree/master/runeterra-game-api |
| repository | https://github.com/iulianR/runeterra-deck-tracker/tree/master/runeterra-game-api |
| max_upload_size | |
| id | 190925 |
| size | 53,400 |
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);
}