woomy-v2/bot/base/Event.js

9 lines
163 B
JavaScript
Raw Normal View History

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