1#[cfg(feature = "reqwest-async")] 2mod asynch; 3 4#[cfg(feature = "reqwest-async")] 5pub use asynch::*; 6 7#[cfg(feature = "reqwest-blocking")] 8pub mod blocking;