delete test category
This commit is contained in:
parent
193846306e
commit
305dfe6541
1 changed files with 0 additions and 22 deletions
|
@ -1,22 +0,0 @@
|
|||
module.exports = class {
|
||||
constructor (name, category) {
|
||||
this.name = name,
|
||||
this.category = category,
|
||||
this.enabled = true,
|
||||
this.devOnly = false,
|
||||
this.aliases = [],
|
||||
this.userPerms = ['administrator'],
|
||||
this.botPerms = [],
|
||||
this.cooldown = 2000,
|
||||
this.help = {
|
||||
description: 'Say hi!',
|
||||
arguments: 'hello',
|
||||
details: '',
|
||||
examples: ''
|
||||
};
|
||||
}
|
||||
|
||||
run (client, message, args, data) { // eslint-disable-line no-unused-vars
|
||||
return message.channel.createMessage(`Hello, ${message.author.mention}!`);
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue