Added bun dependencies + created hono template

This commit is contained in:
2025-10-22 01:18:32 -04:00
parent a5bcc5335c
commit 8d0ef5616a
7 changed files with 134 additions and 0 deletions

6
alarm-server/index.ts Normal file
View File

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