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