import { app, get, post, redirect, contentType, } from "https://denopkg.com/syumai/dinatra@0.15.0/mod.ts"; app( get("/hello", () => "hello"), get("/hello/:id", ({ params }) => params.id), get( "/hello/:id/and/:name", ({ params }) => `:id is ${params.id}, :name is ${params.name}`, ), get("/error", () => [500, "an error has occured"]), get("/callName", ({ params }) => `Hi, ${params.name}!`), post("/