system/api/src/index.ts
2025-07-09 20:47:20 -04:00

10 lines
129 B
TypeScript

import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
return c.text('Hello Hono!')
})
export default app