fix(uload-web): add health endpoint for Docker healthcheck

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-31 18:20:42 +02:00
parent 86c2abb00d
commit 5b11f4bd11

View file

@ -0,0 +1,3 @@
import { json } from '@sveltejs/kit';
export const GET = () => json({ status: 'ok' });