wasmer/src/commands.rs

11 lines
258 B
Rust
Raw Normal View History

mod cache;
2020-04-07 12:34:34 -07:00
#[cfg(all(target_os = "linux", feature = "loader-kernel"))]
mod kernel;
mod run;
mod selfupdate;
mod validate;
2020-04-07 12:34:34 -07:00
#[cfg(all(target_os = "linux", feature = "loader-kernel"))]
pub use kernel::*;
pub use {cache::*, run::*, selfupdate::*, validate::*};