Leader-Service/main.ts

7 lines
124 B
TypeScript
Raw Normal View History

2024-12-15 12:59:57 +00:00
import { Hono } from '@hono/hono'
const app = new Hono()
app.get('/', (c) => c.text('Hello Deno!'))
Deno.serve(app.fetch)