mirror of
https://github.com/sern-handler/automata
synced 2026-06-21 23:32:18 +00:00
10 lines
129 B
TypeScript
10 lines
129 B
TypeScript
import { Hono } from 'hono'
|
|
|
|
const app = new Hono()
|
|
|
|
app.get('/', (c) => {
|
|
return c.text('Hello Hono!')
|
|
})
|
|
|
|
export default app
|