ZLUA REPL!!!!! (#18)

This commit is contained in:
Chance 2024-12-21 16:28:32 -05:00 committed by BitSyndicate
parent f76245835d
commit d064d027c6
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 443E4198D6BBA6DE
6 changed files with 106 additions and 13 deletions

View file

@ -1,4 +1,6 @@
use commands::{ClearCommand, CounterCommand, ExecFile, ExitCommand, HelpCommand, PanicCommmand};
use commands::{
ClearCommand, CounterCommand, ExecFile, ExitCommand, HelpCommand, PanicCommmand, ZLua,
};
use handler::{COMMAND_MANAGER, Category};
use crate::commands;
@ -13,7 +15,8 @@ pub fn setup() {
ClearCommand,
ExitCommand,
CounterCommand,
PanicCommmand
PanicCommmand,
ZLua
);
let cat = Category::new("cr", "Core", "Core commands");
COMMAND_MANAGER.write().add_category(cat.clone());