11 lines
171 B
Rust
11 lines
171 B
Rust
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
pub mod shell;
|
|
mod commands;
|
|
mod ps;
|
|
mod rc;
|
|
|
|
#[path = "./luau/vm.rs"]
|
|
mod vm;
|
|
#[path = "./luau/alias.rs"]
|
|
mod alias; |