1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
pub mod client; pub mod routing; #[cfg(feature = "lol")] pub mod league; #[cfg(feature = "clash")] pub mod clash; #[cfg(feature = "tournament")] pub mod tournament; pub mod account; pub mod active_shard; pub use client::*;