#[cfg(not(target_arch = "wasm32"))]
pub use hyper;
#[cfg(not(target_arch = "wasm32"))]
pub use hyper_tls;
#[cfg(target_arch = "wasm32")]
pub use web_sys;
mod error;
mod issue;
#[cfg(not(target_arch = "wasm32"))]
mod native;
#[cfg(target_arch = "wasm32")]
mod wasm;
pub use error::Error;
pub use issue::Issue;
#[cfg(not(target_arch = "wasm32"))]
#[allow(deprecated)]
pub use native::Client;
#[cfg(target_arch = "wasm32")]
#[allow(deprecated)]
pub use wasm::Client;