woomy-v2/bot/base/Event.js

9 lines
157 B
JavaScript
Raw Normal View History

module.exports = class {
constructor (wsEvent) {
this.wsEvent = wsEvent;
}
2022-12-12 01:09:44 +00:00
run (client) { //eslint-disable-line no-unused-vars
}
};