import type { NextRequest } from "next/server" export async function GET(request: NextRequest) { // This will be handled by the custom server return new Response("WebSocket endpoint", { status: 200 }) }