1 2 3 4 5 6 7 8 9
#[cfg(not(target_arch = "wasm32"))]
#[macro_use]
extern crate tracing;
#[cfg(not(target_arch = "wasm32"))]
pub mod native;
#[cfg(target_arch = "wasm32")]
pub mod web;
1 2 3 4 5 6 7 8 9
#[cfg(not(target_arch = "wasm32"))]
#[macro_use]
extern crate tracing;
#[cfg(not(target_arch = "wasm32"))]
pub mod native;
#[cfg(target_arch = "wasm32")]
pub mod web;