pawkit-net-http 0.1.13

A cross platform wrapper for HTTP requests
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(target_arch = "wasm32")]
mod wasm;

#[cfg(not(target_arch = "wasm32"))]
mod native;

#[cfg(target_arch = "wasm32")]
pub use wasm::*;

#[cfg(not(target_arch = "wasm32"))]
pub use native::*;