2023Collectabot/src/commands/commandlist.ts
2023-03-31 23:27:00 -05:00

16 lines
551 B
TypeScript

import { BlacklistCommand } from "./blacklist";
import { Command } from "./command";
import { DeploySlashCommand } from "./deployslash";
import { GlobalBlacklistCommand } from "./gblacklist";
import { InstructionsCommand } from "./instructions";
import { KillCommand } from "./kill";
import { RandomCaseCommand } from "./randomcase";
export const CommandList: Command[] = [
new GlobalBlacklistCommand(),
new BlacklistCommand(),
new RandomCaseCommand(),
new KillCommand(),
new DeploySlashCommand(),
new InstructionsCommand()
];