Cactus/commands/
mod.rs

1mod command_line;
2
3// TODO: I'll need to implement the 'Command Pattern' here.
4// TODO: I'll also need to implement a sort of queue that stores all received commands.
5
6// Initializes the listening for cli commands
7pub async fn listen_console_commands() {
8    tokio::spawn(command_line::handle_input());
9}