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

13 lines
253 B
Rust
Raw Normal View History

use commands::{ClearCommand, CounterCommand, ExecFile, ExitCommand, HelpCommand};
use crate::commands;
pub mod commands;
pub mod input;
pub mod handler;
2024-12-06 11:19:12 -05:00
pub fn setup() {
commands!(HelpCommand,ClearCommand,ExitCommand,ExecFile,CounterCommand);
}