Files
xiao/commands/single/can-you-not.js
T
Daniel Odendahl Jr b6afded306 Updates
2017-11-09 00:02:59 +00:00

17 lines
319 B
JavaScript

const { Command } = require('discord.js-commando');
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?');
}
};