shell.rs -> session.rs and luau/system.rs -> shell.rs

This commit is contained in:
rhpidfyre 2025-01-03 22:21:27 -05:00
parent 54ae2f4b1c
commit bf92ed7bad
3 changed files with 3 additions and 3 deletions

View File

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