feat: add health, miniapp stub, and sync routes

This commit is contained in:
devilreef 2026-04-29 12:14:18 +06:00
parent 4a8b0ac806
commit c16d028983
Signed by: devilreef
SSH key fingerprint: SHA256:UZisRr4iuXx+IhkbZnR655L2RWAT6o2rgbGv5F/6m3Y
3 changed files with 100 additions and 0 deletions

4
src/routes/health.ts Normal file
View file

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