🐛 fix import
This commit is contained in:
parent
509b2c3b71
commit
d9e37e5e19
@ -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) {
|
export async function onResume(this: WebSocket, data: Payload) {
|
||||||
console.log("Got Resume -> cancel not implemented");
|
console.log("Got Resume -> cancel not implemented");
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { VoiceStateUpdateSchema } from "../schema/VoiceStateUpdateSchema";
|
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 { check } from "./instanceOf";
|
||||||
import {
|
import {
|
||||||
Config,
|
Config,
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { instanceOf } from "lambert-server";
|
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) {
|
export function check(this: WebSocket, schema: any, data: any) {
|
||||||
try {
|
try {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user