1.1.2Updated a month ago
import type { I_CommandCode } from "../command_runner.ts";
import { Command } from "./enum.ts";

export const help_command = {
  command: Command.help,
  aliases: ['-?'],
  description: 'Prints this menu',
  help_text: [],
  execute: () => {}
} as I_CommandCode;