woomy-v2/bot/commands/Configuration/autorole.js

22 lines
496 B
JavaScript
Raw Normal View History

2020-10-23 08:11:14 +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:25:10 +00:00
description: '',
arguments: '',
details: '',
examples: ''
2020-10-23 08:11:14 +00:00
};
}
run (client, message, args, data) {
}
};