2 parents 0fc5b5e + 86aef7d commit c8208ccCopy full SHA for c8208cc
1 file changed
app/api/health/route.ts
@@ -0,0 +1,6 @@
1
+// app/api/health/route.ts
2
+import { NextResponse } from "next/server";
3
+
4
+export async function GET() {
5
+ return NextResponse.json({ status: "OK" }, { status: 200 });
6
+}
0 commit comments