add server
This commit is contained in:
9
concord-server/src/index.ts
Normal file
9
concord-server/src/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Hono } from 'hono'
|
||||
|
||||
const app = new Hono()
|
||||
|
||||
app.get('/', (c) => {
|
||||
return c.text('Hello Hono!')
|
||||
})
|
||||
|
||||
export default app
|
||||
Reference in New Issue
Block a user