Skip to main content

xmtp_api_backend/queries/
mod.rs

1#[cfg(not(target_arch = "wasm32"))]
2mod backend;
3#[cfg(not(target_arch = "wasm32"))]
4pub use backend::*;
5mod api_stats;
6#[cfg(not(target_arch = "wasm32"))]
7mod bidi;
8#[cfg(not(target_arch = "wasm32"))]
9mod bidi_transport;
10#[cfg(all(test, not(target_arch = "wasm32")))]
11mod bidi_transport_props;
12mod boxed_streams;
13mod builder;
14pub mod stream;
15
16pub use api_stats::*;
17#[cfg(not(target_arch = "wasm32"))]
18pub use bidi::*;
19#[cfg(not(target_arch = "wasm32"))]
20pub use bidi_transport::*;
21pub use boxed_streams::*;
22pub use builder::*;