mirror of https://github.com/MingweiSamuel/Riven
32 lines
429 B
Rust
32 lines
429 B
Rust
//! Constant data and Enums relevant to the Riot Games API.
|
|
|
|
mod champion;
|
|
pub use champion::*;
|
|
|
|
mod division;
|
|
pub use division::*;
|
|
|
|
mod game_mode;
|
|
pub use game_mode::*;
|
|
|
|
mod game_type;
|
|
pub use game_type::*;
|
|
|
|
mod queue_type;
|
|
pub use queue_type::*;
|
|
|
|
mod queue;
|
|
pub use queue::*;
|
|
|
|
mod region;
|
|
pub use region::*;
|
|
|
|
mod season;
|
|
pub use season::*;
|
|
|
|
mod team;
|
|
pub use team::*;
|
|
|
|
mod tier;
|
|
pub use tier::*;
|