13 lines
No EOL
285 B
JavaScript
13 lines
No EOL
285 B
JavaScript
/* 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) {
|
|
|
|
}
|
|
}; |