brawl_api/model/rankings/mod.rs
1//! Models for all `/rankings/:country_code/...` Brawl Stars API endpoints.
2//! Included by the feature `"rankings"`; removing that feature will disable the usage of this module.
3
4pub mod players;
5pub use players::*;
6
7pub mod clubs;
8pub use clubs::*;
9
10pub mod brawlers;
11pub use brawlers::*;