From caafbc606ce722f3afaa72ead4a2c28f8fbbe5e2 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Wed, 10 Feb 2021 22:04:55 +0100 Subject: move Schema from util to gateway --- src/opcodes/Identify.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/opcodes') diff --git a/src/opcodes/Identify.ts b/src/opcodes/Identify.ts index f0546a41..da993ec8 100644 --- a/src/opcodes/Identify.ts +++ b/src/opcodes/Identify.ts @@ -1,8 +1,9 @@ import { CLOSECODES, Payload } from "../util/Constants"; import WebSocket from "../util/WebSocket"; -import { checkToken, IdentifySchema } from "fosscord-server-util"; +import { checkToken } from "fosscord-server-util"; import { setupListener } from "../listener/listener"; import { instanceOf } from "lambert-server"; +import { IdentifySchema } from "../schema/Identify"; export async function onIdentify(this: WebSocket, data: Payload) { try { -- cgit 1.5.1