zenyx-engine-telemetry/engine/src/core/repl/mod.rs

19 lines
340 B
Rust
Raw Normal View History

2025-01-11 15:28:01 -05:00
use commands::{ClearCommand, CounterCommand, ExecFile, ExitCommand, HelpCommand, PanicCommmand};
use crate::commands;
pub mod commands;
pub mod handler;
pub mod input;
2024-12-06 11:19:12 -05:00
pub fn setup() {
commands!(
HelpCommand,
2025-01-11 15:12:18 -05:00
ExecFile,
ClearCommand,
ExitCommand,
CounterCommand,
2025-03-22 19:19:02 -04:00
PanicCommmand
);
}