add health endpoint to web app

This commit is contained in:
Sanju Sivalingam
2026-02-18 10:08:25 +05:30
parent 071b3960a7
commit 22481c8834

View File

@@ -0,0 +1,5 @@
import { json } from '@sveltejs/kit';
export function GET() {
return json({ status: 'ok' });
}