9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
/**
|
|
* Health check endpoint for Docker container health monitoring
|
|
*/
|
|
export async function GET() {
|
|
return NextResponse.json({ status: "ok" }, { status: 200 });
|
|
}
|