1 2 3 4 5 6 7 8 9
cfg_if::cfg_if! { if #[cfg(target_arch = "wasm32")] { mod web; pub use web::*; } else { mod native; pub use native::*; } }