cellex-web / src /app /api /live /route.ts
eeshaAI
feat: Migrate frontend from static HTML to Next.js 16 App Router
a09d2a4
Raw
History Blame Contribute Delete
195 Bytes
import { NextRequest } from 'next/server';
import { proxyToEdgeFunction } from '@/lib/proxy';
export async function POST(request: NextRequest) {
return proxyToEdgeFunction('live', request);
}