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