http_client/
native.rs

1//! http-client implementation for curl + fetch
2
3#[cfg(all(feature = "curl_client", not(target_arch = "wasm32")))]
4pub use super::isahc::IsahcClient as NativeClient;
5
6#[cfg(all(feature = "wasm_client", target_arch = "wasm32"))]
7pub use super::wasm::WasmClient as NativeClient;