18 lines
340 B
Rust
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
|
|
);
|
|
}
|