2020-02-05 04:14:26 +01:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
|
mod native;
|
2019-11-17 07:02:38 +01:00
|
|
|
|
2020-02-05 04:14:26 +01:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
|
pub use native::Command;
|
2019-11-17 07:02:38 +01:00
|
|
|
|
2020-02-05 04:14:26 +01:00
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
|
mod web;
|
2019-11-17 07:02:38 +01:00
|
|
|
|
2020-02-05 04:14:26 +01:00
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
|
pub use web::Command;
|