fortnite 0.1.3

Fortnite api in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(dead_code)]
use crate::http;
use crate::auth;

pub struct Client {
    http_client: http::Http,
    auth_client: auth::Authorization,
}

impl Client {
    fn new() -> Self {
        Self {
            http_client: http::Http::new(),
            auth_client: auth::Authorization::new(),
        }
    }
}