1#[cfg(not(feature = "http-client"))] 2mod dummy; 3#[cfg(feature = "http-client")] 4mod simple; 5 6#[cfg(not(feature = "http-client"))] 7pub use dummy::Client; 8#[cfg(feature = "http-client")] 9pub use simple::Client;