You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2b-bot-v2/src/commands/global/index.ts

14 lines
369 B
TypeScript

import {CommandCollection} from "../../lib/CommandCollection";
import {Ping} from "./utility/Ping";
import {Say} from "./utility/Say";
import { Help } from "./utility/Help";
import {Yell} from "./utility/Yell";
import { Die } from "./utility/Die";
export const globalCommands: CommandCollection<any> = new CommandCollection([
Ping,
Say,
Yell,
Die,
]);