Files
xiao/commands/random/can-you-not.js
T
Daniel Odendahl Jr e8a6bb2669 throwback
2017-09-06 19:22:53 +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: 'random',
memberName: 'can-you-not',
description: 'Can YOU not?'
});
}
run(msg) {
return msg.say('Can YOU not?');
}
};