feat: add health check API endpoint

This commit is contained in:
Hördle Bot
2025-11-26 23:37:40 +01:00
parent 0ebb61515d
commit 1a8177430d

5
app/api/health/route.ts Normal file
View File

@@ -0,0 +1,5 @@
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ status: 'ok' }, { status: 200 });
}