karuracc_dev_test/app/api/health/route.ts

15 lines
257 B
TypeScript
Raw Normal View History

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