wasmer_compiler_cli/
commands.rs

1//! The commands available in the Wasmer binary.
2mod compile;
3mod config;
4mod validate;
5
6pub use compile::*;
7pub use {config::*, validate::*};