1 2 3 4 5 6
#[cfg(target_arch = "wasm32")] #[path = "ws_wasm.rs"] pub mod ws; #[cfg(not(target_arch = "wasm32"))] #[path = "ws_native.rs"] pub mod ws;