mod.rs for vm

This commit is contained in:
2025-01-04 18:50:24 -05:00
parent e06a4a6c72
commit 492a789109
6 changed files with 41 additions and 46 deletions

View File

@ -1,15 +1,8 @@
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub mod session;
mod commands;
mod ps;
mod rc;
pub mod commands;
pub mod ps;
pub mod rc;
#[path = "./luau/vm.rs"]
mod vm;
#[path = "./luau/alias.rs"]
mod alias;
#[path = "./luau/terminal.rs"]
mod terminal;
#[path = "./luau/shell.rs"]
mod shell;
pub mod vm;