This commit is contained in:
Emily 2020-10-30 10:24:57 +11:00
parent 7f7b01c61d
commit 3dcf14649a

View file

@ -0,0 +1,22 @@
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: '',
arguments: '',
details: '',
examples: ''
};
}
run (client, message, args, data) { //eslint-disable-line no-unused-vars
}
};