10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
/** Health check endpoint used by Docker and monitoring. */
|
|
export async function GET() {
|
|
return NextResponse.json(
|
|
{ status: "ok", timestamp: Date.now() },
|
|
{ status: 200 },
|
|
);
|
|
}
|