1 2 3 4 5 6 7 8
#[cfg(target_family = "wasm")] #[path = "platform/host.rs"] mod implementation; #[cfg(not(target_family = "wasm"))] #[path = "platform/native.rs"] mod implementation; pub(crate) use implementation::{ServiceFuture, ServicePlatform, connect_socket};