1 line
123 B
TypeScript
1 line
123 B
TypeScript
import { NextResponse } from "next/server"; export async function GET() { return NextResponse.json({ test: "success" }); }
|