irelia-cli 0.5.6

A Rust wrapper around the native LoL APIs
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate irelia;
extern crate tokio;

#[tokio::main]
async fn main() {
    let request_client = irelia::RequestClient::new();
    let in_game_client = irelia::in_game::GameClient::new();

    let _active_player = in_game_client.active_player(&request_client).await.unwrap();
}