feat: add /health endpoint

This commit is contained in:
kolaente 2024-07-01 21:53:23 +02:00
parent 4e9f00ea51
commit d1b8eb4ed3
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B

6
src/pages/api/health.ts Normal file
View File

@ -0,0 +1,6 @@
export async function GET() {
return new Response(JSON.stringify({
healthy: true,
}),
)
}