toes/templates/bare/index.tsx
2026-02-04 09:51:29 -08:00

9 lines
167 B
TypeScript

import { Hype } from '@because/hype'
const app = new Hype()
app.get('/', c => c.text('$$APP_NAME$$'))
app.get('/ok', c => c.text('ok'))
export default app.defaults