Files
xiao/commands/single/can-you-not.js
T
2018-05-30 12:04:21 +00:00

17 lines
320 B
JavaScript

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