1
2
3
4
5
6
7
//! http-client implementation for curl + fetch

#[cfg(all(feature = "curl_client", not(target_arch = "wasm32")))]
pub use super::isahc::IsahcClient as NativeClient;

#[cfg(all(feature = "wasm-client", target_arch = "wasm32"))]
pub use super::wasm::WasmClient as NativeClient;