export function healthRoute(): Response { return new Response(JSON.stringify({ status: "ok", uptime: process.uptime(), timestamp: new Date().toISOString() }), { headers: { "Content-Type": "application/json" }, }); }