summary refs log tree commit diff
path: root/gateway/src/util
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-02 15:12:47 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-02 15:12:47 +0200
commit1716d92849633476690dd660a68b2992d0f467bf (patch)
tree1f9d56f5c09895f59aaa8ded28bcfa7560c41a8b /gateway/src/util
parentMerge pull request #410 from TheArcaneBrony/master (diff)
downloadserver-1716d92849633476690dd660a68b2992d0f467bf.tar.xz
:art: restructure gateway
Diffstat (limited to 'gateway/src/util')
-rw-r--r--gateway/src/util/Heartbeat.ts (renamed from gateway/src/util/setHeartbeat.ts)0
-rw-r--r--gateway/src/util/WebSocket.ts1
-rw-r--r--gateway/src/util/index.ts2
3 files changed, 1 insertions, 2 deletions
diff --git a/gateway/src/util/setHeartbeat.ts b/gateway/src/util/Heartbeat.ts

index f6871cfe..f6871cfe 100644 --- a/gateway/src/util/setHeartbeat.ts +++ b/gateway/src/util/Heartbeat.ts
diff --git a/gateway/src/util/WebSocket.ts b/gateway/src/util/WebSocket.ts
index b80265a7..49626b2a 100644 --- a/gateway/src/util/WebSocket.ts +++ b/gateway/src/util/WebSocket.ts
@@ -1,7 +1,6 @@ import { Intents, Permissions } from "@fosscord/util"; import WS from "ws"; import { Deflate } from "zlib"; -import { Channel } from "amqplib"; export interface WebSocket extends WS { version: number; diff --git a/gateway/src/util/index.ts b/gateway/src/util/index.ts
index 27af5813..0be5ecee 100644 --- a/gateway/src/util/index.ts +++ b/gateway/src/util/index.ts
@@ -1,5 +1,5 @@ export * from "./Constants"; export * from "./Send"; export * from "./SessionUtils"; -export * from "./setHeartbeat"; +export * from "./Heartbeat"; export * from "./WebSocket";