Files
klz-cables.com/app/health/route.ts
2026-01-25 13:42:28 +01:00

10 lines
292 B
TypeScript

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 });
}