AllAi/apps/web/app/api/healthcheck/route.ts
2025-11-14 21:54:04 +03:00

4 lines
94 B
TypeScript

export async function GET() {
return Response.json({ status: "ok" }, { status: 200 });
}