woomy-v2/examples/exampleEvent.js

13 lines
285 B
JavaScript
Raw Normal View History

2020-10-21 00:38:55 +00:00
/* 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) {
}
};