bot/src/plugins/Plugin.ts

9 lines
174 B
TypeScript
Raw Normal View History

2020-01-13 22:38:12 +00:00
import { Collection } from 'discord.js';
import { Command } from './Command';
export class Plugin extends Collection<string, Command> {
constructor() {
super();
}
}