mirror of https://github.com/MingweiSamuel/Riven
Re-export reqwest properly
parent
1b80fa2595
commit
ea1af34854
|
@ -1,13 +1,7 @@
|
||||||
use std::error::Error as StdError;
|
use std::error::Error as StdError;
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
|
|
||||||
/// Re-exported `reqwest` types.
|
use reqwest::{ Error, Response, StatusCode };
|
||||||
pub mod reqwest {
|
|
||||||
pub use reqwest::{
|
|
||||||
Error, Response, StatusCode, Url
|
|
||||||
};
|
|
||||||
}
|
|
||||||
use ::reqwest::*;
|
|
||||||
|
|
||||||
/// Result containing RiotApiError on failure.
|
/// Result containing RiotApiError on failure.
|
||||||
pub type Result<T> = std::result::Result<T, RiotApiError>;
|
pub type Result<T> = std::result::Result<T, RiotApiError>;
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
|
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
|
||||||
#![cfg_attr(not(feature = "nightly"), doc = "See [README.md](https://github.com/MingweiSamuel/Riven#readme).")]
|
#![cfg_attr(not(feature = "nightly"), doc = "See [README.md](https://github.com/MingweiSamuel/Riven#readme).")]
|
||||||
|
|
||||||
|
// Re-exported reqwest types.
|
||||||
|
pub use reqwest;
|
||||||
|
|
||||||
|
|
||||||
mod config;
|
mod config;
|
||||||
pub use config::RiotApiConfig;
|
pub use config::RiotApiConfig;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue