1#[cfg(feature = "salvo")]
4#[cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))]
5pub use crate::brotli;
6
7#[cfg(feature = "salvo")]
8pub use crate::requests::MsgPackParser;
9
10#[cfg(feature = "reqwest")]
11pub use crate::requests::MsgPackBuilder;
12
13#[cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))]
14pub use crate::results::MResult;
15
16#[cfg(any(target_arch = "wasm32", target_arch = "wasm64"))]
17pub use crate::results::CResult;
18
19#[cfg(feature = "salvo")]
20pub use crate::responses::{OK, Plain, Html, File, Json, MsgPack};
21
22#[cfg(feature = "reqwest")]
23#[cfg(any(target_arch = "wasm32", target_arch = "wasm64"))]
24pub use crate::responses::MsgPackResponse;
25
26#[cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))]
27pub use crate::errors::{ErrorResponse, Consider};
28
29#[cfg(any(target_arch = "wasm32", target_arch = "wasm64"))]
30pub use crate::errors::{CliError, ConsiderCli};
31
32#[cfg(feature = "salvo")]
33#[cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))]
34pub use crate::{ok, plain, html, file, json, msgpack};
35
36#[cfg(feature = "salvo")]
37#[cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))]
38pub use salvo::oapi::endpoint;
39
40#[cfg(feature = "salvo")]
41#[cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))]
42pub use salvo::http::StatusCode;