"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class Quote {
constructor() {
this.commandCodes = ['quote', 'grab'];
this.commandPrefix = '!';
}
executeCommand(message, parameters) {
message.channel.send('hahaha no.');
}
}
exports.default = Quote;