Files
transcoderr/main.ts
2025-09-05 20:33:17 +08:00

10 lines
132 B
TypeScript

import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
return c.text('Hello Hono!')
})
Deno.serve(app.fetch)