1 unstable release

0.1.0 Dec 20, 2019

#10 in #riot-games

MIT license

15KB
273 lines

Runeterra Game Client API

Proxy API for the Legends of Runeterra Game Client API

Examples

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);
}

lib.rs:

Proxy API for the Legends of Runeterra Game Client API

Examples

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);
}

Dependencies

~3.5–8MB
~184K SLoC