import { Hono } from 'hono'

import { ok } from '../http.js'

export const healthRoute = new Hono().get('/health', () => ok({ ok: true }))
