aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/BotCommand.ts
blob: e86e17654047f7aef58157cfe95a63763643f145 (plain)
1
2
3
4
5
6
7
8
9
10
import { Command, CommandOptions } from 'discord-akairo';
import { BotClient } from './BotClient';

export class BotCommand extends Command {
	public client: BotClient;
	constructor(id: string, options?: CommandOptions) {
		super(id, options)
		this.options = options
	}
}