import { Elysia } from "elysia" export const healthRoutes = new Elysia({ prefix: "/health" }).get( "/", () => ({ status: "ok", timestamp: new Date().toISOString(), service: "deckyvault-api", }), )