1
0
Fork 1
mirror of https://github.com/MingweiSamuel/Riven.git synced 2025-03-31 11:03:15 -07:00
Riven/src/lib.rs

19 lines
218 B
Rust

//! Module docs TODO.
#![feature(non_exhaustive)]
mod config;
pub use config::RiotApiConfig;
pub mod consts;
pub mod endpoints;
mod error;
pub use error::*;
mod req;
mod riot_api;
pub use riot_api::*;
mod util;