7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export async function GET() {
|
|
return NextResponse.json({ status: "ok" });
|
|
}
|
|
|