5 lines
102 B
TypeScript
5 lines
102 B
TypeScript
|
import { NextResponse } from "next/server";
|
||
|
|
||
|
export function GET() {
|
||
|
return NextResponse.json({});
|
||
|
}
|