rename examples to templates

This commit is contained in:
Emily 2020-10-28 23:10:36 +11:00
parent f626446e50
commit 30a3067a6c
6 changed files with 9 additions and 15 deletions

View File

@ -1,13 +0,0 @@
/* eslint-disable */
// Don't modify any constructor variables here
module.exports = class {
constructor (wsEvent) {
this.wsEvent = wsEvent;
}
// The main function that is called by the event listener when this event is emitted
async run (client) {
}
};

View File

@ -1,4 +1,3 @@
// Don't modify the name or category variables, they are set automatically by the loaders.
module.exports = class {
constructor (name, category) {
this.name = name,
@ -16,7 +15,6 @@ module.exports = class {
};
}
// Main function that is called by the message handler when the command is executed
run (client, message, args, data) { //eslint-disable-line no-unused-vars
}

View File

@ -0,0 +1,9 @@
module.exports = class {
constructor (wsEvent) {
this.wsEvent = wsEvent;
}
async run (client) { //eslint-disable-line no-unused-vars
}
};