11 lines
205 B
Rust
11 lines
205 B
Rust
#[cfg(not(target_arch = "wasm32"))]
|
|
mod native;
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
pub use native::Command;
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
mod web;
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
pub use web::Command;
|