aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/BotCommand.ts
blob: 79c7a9f5b25cd77c41712e7302eb9039a477574b (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;
	}
}