Proxy API for the Legends of Runeterra [Game Client API]
Game Client API
```rust use runeterragameapi::{Client, DEFAULT_PORT};
async fn main() { let client = Client::new(DEFAULTPORT); let result = client.getstatic_decklist().await; dbg!(&result); } ```