mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-13 10:03:31 +01:00
initial
This commit is contained in:
14
src/client/websocket/packets/handlers/AbstractHandler.js
Normal file
14
src/client/websocket/packets/handlers/AbstractHandler.js
Normal file
@@ -0,0 +1,14 @@
|
||||
'use strict';
|
||||
|
||||
class AbstractHandler {
|
||||
|
||||
constructor(packetManager) {
|
||||
this.packetManager = packetManager;
|
||||
}
|
||||
|
||||
handle(packet) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = AbstractHandler;
|
||||
Reference in New Issue
Block a user