diff --git a/apps/uload/apps/web/src/routes/health/+server.ts b/apps/uload/apps/web/src/routes/health/+server.ts new file mode 100644 index 000000000..0e4f5c338 --- /dev/null +++ b/apps/uload/apps/web/src/routes/health/+server.ts @@ -0,0 +1,3 @@ +import { json } from '@sveltejs/kit'; + +export const GET = () => json({ status: 'ok' });