Skip to main content

mvm_runtime/
lib.rs

1// mvm-runtime: Shell execution and VM lifecycle
2// Depends on mvm-core and mvm-guest
3
4pub mod build_env;
5pub mod config;
6pub mod shell;
7pub mod shell_mock;
8pub mod ui;
9
10pub mod vm;