first commit
This commit is contained in:
5
frontend/app/api/health/live/route.ts
Normal file
5
frontend/app/api/health/live/route.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { NextResponse } from "next/server";
|
||||
|
||||
export async function GET() {
|
||||
return NextResponse.json({ live: "ok" }, { status: 200 });
|
||||
}
|
||||
5
frontend/app/api/health/ready/route.ts
Normal file
5
frontend/app/api/health/ready/route.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { NextResponse } from "next/server";
|
||||
|
||||
export async function GET() {
|
||||
return NextResponse.json({ ready: "ok" }, { status: 200 });
|
||||
}
|
||||
Reference in New Issue
Block a user