Haha-Yes/commands/fun/yes.js
2018-09-08 02:31:48 +02:00

15 lines
No EOL
364 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class YesCommand extends Command {
constructor(client) {
super(client, {
name: 'yes',
group: 'fun',
memberName: 'yes',
description: 'very yes',
});
}
run(message) {
return message.say('haha very yes');
}
};