/** * Health check endpoint */ export function statusRoute(): Response { return new Response("OK", { status: 200 }); }