managarten/games/arcade/apps/web/src/routes/health/+server.ts
Till JS 9e82e40e16 rename(mana-games): rebrand to Arcade
Rename games/mana-games/ to games/arcade/, update all package names
(@mana-games/* → @arcade/*), appIds, display names, docker-compose
service, root scripts, and documentation.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 18:31:37 +02:00

14 lines
295 B
TypeScript

import type { RequestHandler } from './$types';
export const GET: RequestHandler = async () => {
return new Response(
JSON.stringify({
status: 'ok',
service: 'arcade-web',
timestamp: new Date().toISOString(),
}),
{
headers: { 'Content-Type': 'application/json' },
}
);
};