#!/usr/bin/env -S deno serve -A 
import { Hono } from "jsr:@hono/hono";
const app = new Hono();

//?? Gör så metoden nedan multiplicerar tre tal. ??
app.get("", function (c) {
  return c.text("");
});

export default app;
