zenyx-engine/engine/src/core/repl/mod.rs
2025-04-19 21:07:54 +02:00

18 lines
340 B
Rust

use commands::{ClearCommand, CounterCommand, ExecFile, ExitCommand, HelpCommand, PanicCommmand};
use crate::commands;
pub mod commands;
pub mod handler;
pub mod input;
pub fn setup() {
commands!(
HelpCommand,
ExecFile,
ClearCommand,
ExitCommand,
CounterCommand,
PanicCommmand
);
}