7 lines
208 B
TypeScript
7 lines
208 B
TypeScript
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 })
|
|
}
|