Files
confidence-engine/app/api/health/route.js
T

4 lines
92 B
JavaScript

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