mod agent;
mod clean;
mod compile;
mod exec;
mod init;
mod issue_detector;
mod module_display;
mod os;
mod plugin;
mod run;
mod stop;
mod verify;
pub use agent::handle_agent_command;
pub use clean::handle_clean_command;
pub use compile::handle_compile_command;
pub use exec::handle_exec_command;
pub use os::handle_os_command;
pub use plugin::run_plugin_command;
pub use run::handle_run_command;
pub use stop::handle_stop_command;
pub use verify::{handle_inspect_command, handle_verify_command, verify_wasm, VerificationResult};