fix IncomingMessage import

This commit is contained in:
2025-03-27 23:14:31 -04:00
parent 492129df17
commit 6b97e3800a

View File

@@ -7,11 +7,11 @@ import { generateRandomString } from "./apiutils.ts";
// @ts-types = "npm:@types/express" // @ts-types = "npm:@types/express"
import express from "express"; import express from "express";
import WebSocket, { WebSocketServer } from "ws"; import WebSocket, { WebSocketServer } from "ws";
import { IncomingMessage } from "../../AppData/Local/deno/npm/registry.npmjs.org/@types/connect/3.4.38/index.d.ts";
import { decode } from "@gz/jwt"; import { decode } from "@gz/jwt";
import UnifiedProfile, { ProfileTokenFormat } from "./data/profiles.ts"; import UnifiedProfile, { ProfileTokenFormat } from "./data/profiles.ts";
import { SocketHandoff } from "./socket/handoff.ts"; import { SocketHandoff } from "./socket/handoff.ts";
import { SignalRSocketHandler } from "./socket/socket.ts"; import { SignalRSocketHandler } from "./socket/socket.ts";
import { IncomingMessage } from "node:http";
const instanceId = generateRandomString(64); const instanceId = generateRandomString(64);