chore(project) rename main directory
This commit is contained in:
13
lib/WetSock/Plugins/BasePlugin.js
Normal file
13
lib/WetSock/Plugins/BasePlugin.js
Normal file
@@ -0,0 +1,13 @@
|
||||
export default class BasePlugin {
|
||||
#wetsock = undefined;
|
||||
constructor() {
|
||||
}
|
||||
|
||||
initialize(wetsock) {
|
||||
this.#wetsock = wetsock;
|
||||
}
|
||||
|
||||
onMessage(clientId, message) {}
|
||||
onOpen(clientId) {}
|
||||
onClose(clientId) {}
|
||||
}
|
||||
Reference in New Issue
Block a user