This commit is contained in:
2026-01-25 13:42:28 +01:00
parent 4dbf566f0c
commit c074a5d935
13 changed files with 383 additions and 12 deletions

View File

@@ -1,5 +1,9 @@
import { getServerAppServices } from '@/lib/services/create-services.server';
export const dynamic = 'force-dynamic';
export async function GET() {
const services = getServerAppServices();
services.logger.debug('Health check requested');
return new Response('OK', { status: 200 });
}