sztucznainteligencjadlafirm/app/api/health/route.ts
Adrian Miesikowski a10d92abac first commit
2026-02-10 13:34:42 +01:00

9 lines
171 B
TypeScript

import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({
status: "ok",
timestamp: new Date().toISOString(),
});
}