Added bun dependencies + created hono template
This commit is contained in:
6
alarm-server/index.ts
Normal file
6
alarm-server/index.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { Hono } from 'hono'
|
||||
|
||||
const app = new Hono()
|
||||
app.get('/', (c) => c.text('Hello Bun!'))
|
||||
|
||||
export default app
|
||||
Reference in New Issue
Block a user