Skip to content

Latest commit

 

History

History

runeterra-game-api

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

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