blob: 26f58fde078d7f85df343e5198a5f3cc5f8d497e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#[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;
|