1 2 3 4 5 6 7 8 9 10 11
#[cfg(not(feature = "blocking"))] mod r#async; #[cfg(not(feature = "blocking"))] pub use r#async::Client; #[cfg(feature = "blocking")] mod sync; #[cfg(feature = "blocking")] pub use sync::Client;