A rust wrapper for the Foxhole War API.
This library requires the use of tokio as an async runtime.
```rust use foxhole_api::Client;
async fn main() { // The default shard is Live-1 let client = Client::default();
let war_data = client.war_data().await.unwrap();
let map_names = client.map_names().await.unwrap();
let static_map_data = client.map_data_static("TheFingersHex".to_string()).await.unwrap();
let dynamic_map_data = client.map_data_dynamic("TheFingersHex".to_string()).await.unwrap();
} ```