Files
mamad-app/app/api/websocket/route.ts
2025-06-22 00:01:22 +03:00

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 })
}