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

pub mod player;
pub use player::*;

pub mod battlelog;
pub use battlelog::*;