pub mod connection;
pub mod events;
#[cfg(all(not(target_arch = "wasm32"), any(feature = "quic", feature = "tcp")))]
pub mod framing;
#[cfg(all(
not(target_arch = "wasm32"),
any(feature = "websocket", feature = "quic", feature = "tcp")
))]
pub mod factory;
#[cfg(all(not(target_arch = "wasm32"), feature = "quic"))]
pub mod quic;
#[cfg(all(not(target_arch = "wasm32"), feature = "tcp"))]
pub mod tcp;
#[cfg(all(not(target_arch = "wasm32"), feature = "websocket"))]
pub mod websocket;
#[cfg(all(target_arch = "wasm32", feature = "websocket"))]
pub mod websocket_wasm;
#[cfg(all(not(target_arch = "wasm32"), feature = "websocket"))]
pub use websocket::WebSocketTransport;
#[cfg(all(not(target_arch = "wasm32"), feature = "tcp"))]
pub use tcp::TCPTransport;
#[cfg(all(target_arch = "wasm32", feature = "websocket"))]
pub use websocket_wasm::WebSocketTransport;