forked from mirror/Riven
41 lines
573 B
Plaintext
41 lines
573 B
Plaintext
{{
|
|
const dotUtils = require('./dotUtils.js');
|
|
const readme = require('fs').readFileSync('../../README.md', 'utf-8').split(/\r?\n/);
|
|
}}{{= dotUtils.preamble() }}
|
|
|
|
#![forbid(unsafe_code)]
|
|
#![deny(missing_docs)]
|
|
|
|
{{~ readme :line }}
|
|
//! {{= line }}
|
|
{{~}}
|
|
|
|
// Re-exported reqwest types.
|
|
pub use reqwest;
|
|
|
|
|
|
mod config;
|
|
pub use config::RiotApiConfig;
|
|
|
|
pub mod consts;
|
|
|
|
pub mod endpoints;
|
|
|
|
mod error;
|
|
pub use error::*;
|
|
|
|
pub mod meta;
|
|
|
|
pub mod models;
|
|
mod models_impls;
|
|
|
|
mod req;
|
|
|
|
mod response_info;
|
|
pub use response_info::*;
|
|
|
|
mod riot_api;
|
|
pub use riot_api::*;
|
|
|
|
mod util;
|