Leader-Service/main.ts
2024-12-15 12:59:57 +00:00

7 lines
124 B
TypeScript

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