Files
xiao/commands/single-res/can-you-not.js
T
dragonfire535 a006a8a8de Lots of changes
2017-10-07 11:18:08 -04:00

17 lines
323 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class CanYouNotCommand extends Command {
constructor(client) {
super(client, {
name: 'can-you-not',
group: 'single-res',
memberName: 'can-you-not',
description: 'Can YOU not?'
});
}
run(msg) {
return msg.say('Can YOU not?');
}
};