forked from mirror/Riven
1
0
Fork 0

Standardize re-export of reqwest

users/mingwei/surf
Mingwei Samuel 2020-04-21 00:48:57 -07:00
parent fb0030e754
commit f716a30e31
2 changed files with 4 additions and 7 deletions

View File

@ -1,13 +1,7 @@
use std::error::Error as StdError;
use std::fmt;
/// Re-exported `reqwest` types.
pub mod reqwest {
pub use reqwest::{
Error, Response, StatusCode, Url
};
}
use ::reqwest::*;
use crate::reqwest::*;
/// Result containing RiotApiError on failure.
pub type Result<T> = std::result::Result<T, RiotApiError>;

View File

@ -6,6 +6,9 @@
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
#![cfg_attr(not(feature = "nightly"), doc = "See [README.md](https://github.com/MingweiSamuel/Riven#readme).")]
/// Re-exported `reqwest` types.
pub use reqwest;
mod config;
pub use config::RiotApiConfig;