feat: initial commit

This commit is contained in:
2024-04-28 16:44:51 +02:00
parent f76367835f
commit fcff1b03fc
6 changed files with 77 additions and 0 deletions

9
src/index.ts Normal file
View File

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