Leader-Service/main.ts

10 lines
207 B
TypeScript
Raw Normal View History

2024-12-15 12:59:57 +00:00
import { Hono } from '@hono/hono'
2024-12-16 09:57:56 +00:00
import { iotData } from "./src/routes/Api.ts";
2024-12-15 12:59:57 +00:00
const app = new Hono()
app.get('/', (c) => c.text('Hello Deno!'))
2024-12-16 09:57:56 +00:00
app.route("/", iotData)
Deno.serve({port:80}, app.fetch)