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 | 9fa4c607fc5056dc2b2cc0be9b425872ec91e292 (patch) | |
tree | 3ab5077ad34654b9ae5bdfc018ae0b4e7cc6f70e /gateway/src/opcodes/LazyRequest.ts | |
parent | :bug: fix build (diff) | |
download | server-9fa4c607fc5056dc2b2cc0be9b425872ec91e292.tar.xz |
:art: fix imports with new build script
Diffstat (limited to 'gateway/src/opcodes/LazyRequest.ts')
-rw-r--r-- | gateway/src/opcodes/LazyRequest.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gateway/src/opcodes/LazyRequest.ts b/gateway/src/opcodes/LazyRequest.ts index 5b6ac444..d37e32da 100644 --- a/gateway/src/opcodes/LazyRequest.ts +++ b/gateway/src/opcodes/LazyRequest.ts @@ -5,7 +5,9 @@ import { Role, } from "@fosscord/util"; import { LazyRequest } from "../schema/LazyRequest"; -import { WebSocket, Send, OPCODES, Payload } from "@fosscord/gateway"; +import { Send } from "../util/Send"; +import { OPCODES } from "../util/Constants"; +import { WebSocket, Payload } from "@fosscord/gateway"; import { check } from "./instanceOf"; import "missing-native-js-functions"; |