Files
methylphenidate/alarm-server/index.ts

6 lines
113 B
TypeScript

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