1
2
3
4
5
6
7
8
9
10
//! The module for the Wasmtime CLI commands.

mod compile;
mod config;
mod explore;
mod run;
mod settings;
mod wast;

pub use self::{compile::*, config::*, explore::*, run::*, settings::*, wast::*};