5 lines
102 B
TypeScript
Raw Normal View History

import { NextResponse } from "next/server";
export function GET() {
return NextResponse.json({});
}