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

app.get("/hello", function (c) {
  return c.text("Hello!");
});

export default app;
