woomy-v2/templates/exampleCommand.js

21 lines
528 B
JavaScript
Raw Normal View History

2020-10-21 00:38:55 +00:00
module.exports = class {
constructor (name, category) {
this.name = name,
this.category = category,
this.enabled = true,
this.devOnly = false,
this.aliases = [],
this.userPerms = [],
this.botPerms = [],
this.cooldown = 2000,
this.help = {
description: 'description',
usage: 'usage',
examples: 'examples'
};
}
2020-10-28 07:01:22 +00:00
run (client, message, args, data) { //eslint-disable-line no-unused-vars
2020-10-21 00:38:55 +00:00
}
};