2024-12-21 16:28:32 -05:00
|
|
|
use commands::{
|
2025-01-11 15:12:18 -05:00
|
|
|
ClearCommand, CounterCommand, ExitCommand, HelpCommand, PanicCommmand,ExecFile
|
2024-12-21 16:28:32 -05:00
|
|
|
};
|
2024-12-01 23:52:12 -06:00
|
|
|
|
2024-12-19 20:54:46 -05:00
|
|
|
use crate::commands;
|
2024-12-09 20:28:28 -05:00
|
|
|
|
2024-12-19 20:54:46 -05:00
|
|
|
pub mod commands;
|
|
|
|
pub mod handler;
|
2024-12-21 14:35:55 -05:00
|
|
|
pub mod input;
|
2024-12-23 23:14:11 -05:00
|
|
|
pub mod zlua;
|
2024-12-06 11:19:12 -05:00
|
|
|
|
2024-12-19 20:54:46 -05:00
|
|
|
pub fn setup() {
|
2024-12-21 14:35:55 -05:00
|
|
|
commands!(
|
|
|
|
HelpCommand,
|
2025-01-11 15:12:18 -05:00
|
|
|
ExecFile,
|
|
|
|
|
2024-12-21 14:35:55 -05:00
|
|
|
ClearCommand,
|
|
|
|
ExitCommand,
|
|
|
|
CounterCommand,
|
2024-12-21 16:28:32 -05:00
|
|
|
PanicCommmand,
|
2024-12-23 23:14:11 -05:00
|
|
|
zlua::ZLua
|
2024-12-21 14:35:55 -05:00
|
|
|
);
|
2024-12-01 23:52:12 -06:00
|
|
|
}
|