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_creatorcode_v2(&http_client, "trymacs").await;
    println!("Result: {result:#?}");
    assert!(result.is_ok());
}