Files
xiao/commands/single/can-you-not.js
T
Dragon Fire c61ae11679 Fix
2021-06-05 12:50:41 -04:00

18 lines
346 B
JavaScript

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