fortnite-api 0.2.0

A library for interacting with the Fortnite API
Documentation
1
2
3
4
5
6
7
8
#[tokio::main]
async fn main() {
    let http_client = reqwest::Client::new();

    let result = fortnite_api::get_map_v1(&http_client, None).await;
    println!("Result: {result:#?}");
    assert!(result.is_ok());
}