14 lines
257 B
TypeScript
14 lines
257 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export const runtime = "edge";
|
|
|
|
export function GET() {
|
|
return NextResponse.json(
|
|
{
|
|
status: "ok",
|
|
app: "karuracc-test-app",
|
|
ts: new Date().toISOString(),
|
|
},
|
|
{ status: 200 }
|
|
);
|
|
}
|