2023Collectabot/src/commands/commandlist.ts
2023-03-28 23:13:13 -05:00

13 lines
418 B
TypeScript

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