bot/src/plugins/Plugin.ts

9 lines
181 B
TypeScript

import { Collection } from 'discord.js';
import { Command } from '@plugins/Command';
export class Plugin extends Collection<string, Command> {
constructor() {
super();
}
}