bot/src/plugins/Plugin.ts

9 lines
181 B
TypeScript
Raw Normal View History

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