mirror of
https://github.com/spacebarchat/server.git
synced 2026-08-28 13:54:08 +00:00
🐛 fix import
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { WebSocket, Payload, Send } from "@fosscord/gateway";
|
||||
import { WebSocket, Payload } from "@fosscord/gateway";
|
||||
import { Send } from "../util/Send";
|
||||
|
||||
export async function onResume(this: WebSocket, data: Payload) {
|
||||
console.log("Got Resume -> cancel not implemented");
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { VoiceStateUpdateSchema } from "../schema/VoiceStateUpdateSchema";
|
||||
import { Payload, WebSocket, genVoiceToken } from "@fosscord/gateway";
|
||||
import { Payload, WebSocket } from "@fosscord/gateway";
|
||||
import { genVoiceToken } from "../util/SessionUtils";
|
||||
import { check } from "./instanceOf";
|
||||
import {
|
||||
Config,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { instanceOf } from "lambert-server";
|
||||
import { WebSocket, CLOSECODES } from "@fosscord/gateway";
|
||||
import { WebSocket } from "@fosscord/gateway";
|
||||
import { CLOSECODES } from "../util/Constants";
|
||||
|
||||
export function check(this: WebSocket, schema: any, data: any) {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user