//! Platform-specific WebSocket transport.
//!//! Provides a unified interface for connecting, sending, and receiving
//! WebSocket messages on both native and WASM targets.
#[cfg(not(target_arch ="wasm32"))]modnative;#[cfg(not(target_arch ="wasm32"))]pub(crate)usenative::*;#[cfg(target_arch ="wasm32")]modwasm;#[cfg(target_arch ="wasm32")]pub(crate)usewasm::*;