We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba36add commit 82fc219Copy full SHA for 82fc219
1 file changed
src/app/api/health/route.ts
@@ -0,0 +1,5 @@
1
+import { NextResponse } from "next/server";
2
+
3
+export async function GET() {
4
+ return NextResponse.json({ status: "ok", timestamp: new Date().toISOString() });
5
+}
0 commit comments