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

17 lines
316 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class SlowClapCommand extends Command {
constructor(client) {
super(client, {
name: 'slow-clap',
group: 'single-res',
memberName: 'slow-clap',
description: '_slow clap_'
});
}
run(msg) {
return msg.say('_slow clap_');
}
};