diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-09 01:45:02 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-09 01:45:02 +0200 |
commit | 41a193dff0911da78fe080f610478ecabeb6184a (patch) | |
tree | 758769629b934b1ba30b97965f30ef70d60e3139 /gateway/src/opcodes/Heartbeat.ts | |
parent | :bug: fix build (diff) | |
download | server-41a193dff0911da78fe080f610478ecabeb6184a.tar.xz |
:art: fix imports with new build script
Diffstat (limited to 'gateway/src/opcodes/Heartbeat.ts')
-rw-r--r-- | gateway/src/opcodes/Heartbeat.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gateway/src/opcodes/Heartbeat.ts b/gateway/src/opcodes/Heartbeat.ts index 46caee56..50394130 100644 --- a/gateway/src/opcodes/Heartbeat.ts +++ b/gateway/src/opcodes/Heartbeat.ts @@ -1,4 +1,6 @@ -import { Payload, Send, setHeartbeat, WebSocket } from "@fosscord/gateway"; +import { Payload, WebSocket } from "@fosscord/gateway"; +import { setHeartbeat } from "../util/Heartbeat"; +import { Send } from "../util/Send"; export async function onHeartbeat(this: WebSocket, data: Payload) { // TODO: validate payload |