Files
AuroraBot-discord/src/web/routes/health.ts
2026-01-07 12:40:21 +01:00

10 lines
260 B
TypeScript

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