added a health check endpoint

This commit is contained in:
Natfan 2025-03-06 00:31:05 +00:00
parent 2e6d94ad4a
commit 18a2f360ea

3
src/app/api/health.ts Normal file
View File

@ -0,0 +1,3 @@
export async function GET() {
return new Response("OK", { status: 200 });
}