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

17 lines
312 B
JavaScript

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