18 lines
325 B
TypeScript
18 lines
325 B
TypeScript
/**
|
|
* 健康检查 - Liveness
|
|
*
|
|
* GET /api/health
|
|
* 返回 200 表示进程存活
|
|
*/
|
|
import { NextResponse } from "next/server";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export function GET(): NextResponse {
|
|
return NextResponse.json({
|
|
status: "ok",
|
|
service: "admin-portal",
|
|
timestamp: Date.now(),
|
|
});
|
|
}
|