blob: 26f58fde078d7f85df343e5198a5f3cc5f8d497e (
plain) (
tree)
|
|
#[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;
|