brawl-api 0.1.2

A Rust implementation of the Brawl Stars API (https://developer.brawlstars.com/).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# tests directory

This directory contains integration tests for the `brawl_api` crate. Inside this directory, there must be a `test_config.json` file with the API auth key (following the format below) in order to test fetching.

## Test Config File Format 

```json
{
  "key": "api auth key here",
  "tags": {
    "player": "#PLAYER_TAG_TO_USE_WHEN_TESTING_PLAYER_FETCHING",
    "club": "#CLUB_TAG_TO_USE_WHEN_TESTING_CLUB_FETCHING"
  }
}
```