iced/futures/src/command.rs
2020-02-05 04:14:26 +01:00

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;