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

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

export default app;
