1
2
3
4
5
6
7
8
9
extern crate reqwest;

pub use reqwest::Error;

#[cfg(not(feature = "blocking"))]
pub use ::reqwest::*;

#[cfg(feature = "blocking")]
pub use reqwest::blocking::*;