Test route

This commit is contained in:
Manohar Gupta 2026-05-17 10:47:35 +05:30
parent dc54fd31c6
commit d18213fc7d

View file

@ -0,0 +1 @@
import { NextResponse } from "next/server"; export async function GET() { return NextResponse.json({ test: "success" }); }