arcanesync-server/src/routes/health.ts

4 lines
111 B
TypeScript

import { Hono } from 'hono'
export const health = new Hono()
health.get('/health', c => c.json({ ok: true }))