import { type NextRequest } from "next/server"; import { proxyLotteryApi } from "@/lib/lottery-api-proxy"; type RouteContext = { params: Promise<{ path: string[] }> }; async function handle(request: NextRequest, context: RouteContext) { const { path } = await context.params; return proxyLotteryApi(request, path); } export const GET = handle; export const POST = handle; export const PUT = handle; export const PATCH = handle; export const DELETE = handle;