diyaa.de/app/api/health/route.ts
2026-03-13 03:45:13 +01:00

17 lines
275 B
TypeScript

import { NextResponse } from "next/server";
export function GET() {
return NextResponse.json(
{
status: "ok",
timestamp: new Date().toISOString(),
},
{
status: 200,
headers: {
"Cache-Control": "no-store",
},
},
);
}