diff --git a/templates/exampleCommand.js b/templates/exampleCommand.js deleted file mode 100644 index 8f5bbf8..0000000 --- a/templates/exampleCommand.js +++ /dev/null @@ -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 = [], - this.botPerms = [], - this.cooldown = 2000, - this.help = { - description: '', - arguments: '', - details: '', - examples: '' - }; - } - - run (client, message, args, data) { //eslint-disable-line no-unused-vars - - } -}; \ No newline at end of file diff --git a/templates/exampleEvent.js b/templates/exampleEvent.js deleted file mode 100644 index b725fed..0000000 --- a/templates/exampleEvent.js +++ /dev/null @@ -1,9 +0,0 @@ -module.exports = class { - constructor (wsEvent) { - this.wsEvent = wsEvent; - } - - async run (client) { //eslint-disable-line no-unused-vars - - } -}; \ No newline at end of file