add server

This commit is contained in:
Kevin Puig
2025-09-26 23:36:08 -04:00
parent d2a8cf11a2
commit 051aa69363
6 changed files with 70 additions and 0 deletions

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