import { Hono } from '@hono/hono' import { iotData } from "./src/routes/Api.ts"; const app = new Hono() app.get('/', (c) => c.text('Hello Deno!')) app.route("/", iotData) Deno.serve({port:80}, app.fetch)