import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
console.log("Test")
return c.text('Hello Hono')
})
app.get('/internal-health-check', (c) => c.text('ok'))
Deno.serve(app.fetch)
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
console.log("Test")
return c.text('Hello Hono')
})
app.get('/internal-health-check', (c) => c.text('ok'))
Deno.serve(app.fetch)