Haha-Yes/commands/fun/yes.js

15 lines
364 B
JavaScript
Raw Normal View History

2018-09-08 02:31:48 +02:00
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');
}
};