kataglyphis_rustprojecttemplate/platform/
mod.rs1#[cfg(target_arch = "wasm32")]
3mod wasm;
4#[cfg(target_arch = "wasm32")]
5pub use wasm::*;
6
7#[cfg(not(target_arch = "wasm32"))]
8mod native;
9#[cfg(not(target_arch = "wasm32"))]
10pub use native::*;