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