1//! Module related to the internals of fetching and requesting to the Brawl Stars API. 2 3pub mod request; 4 5pub mod client; 6pub use client::Client; 7 8pub mod routes; 9pub use routes::Route;