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
//! Models for all `/rankings/:country_code/...` Brawl Stars API endpoints.
//! Included by the feature `"rankings"`; removing that feature will disable the usage of this module.

pub mod players;
pub use players::*;

pub mod clubs;
pub use clubs::*;

pub mod brawlers;
pub use brawlers::*;