delete test category

This commit is contained in:
Emily 2020-11-07 11:12:39 +11:00
parent 193846306e
commit 305dfe6541

View file

@ -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}!`);
}
};