1
2
3
4
5
6
7
8
9
#[cfg(target_family = "wasm")]
pub mod wasm;
#[cfg(target_family = "wasm")]
pub use wasm::*;

#[cfg(not(target_family = "wasm"))]
pub mod stub;
#[cfg(not(target_family = "wasm"))]
pub use stub::*;