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

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

app.get("/say/hej", function (c) {
  return c.text("Hej!");
});

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

app.get("/say", function (c) {
  return c.text("Hello or Hej?");
});

export default app;
