woomy-v2/templates/exampleCommand.js

22 lines
533 B
JavaScript
Raw Permalink 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 = {
2020-10-29 08:20:45 +00:00
description: '',
arguments: '',
details: '',
examples: ''
2020-10-21 00:38:55 +00:00
};
}
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
}
};