1 2 3 4 5 6 7 8
pub(crate) use self::platform::*; #[cfg(not(target_arch = "wasm32"))] #[path = "global/desktop.rs"] mod platform; #[cfg(target_arch = "wasm32")] #[path = "global/wasm.rs"] mod platform;