Deno run is not working properly also drun
问题 After created an index.ts and wrote a simple code for listening to port 3000 and printing hello world on the body, I'm also not able to run or get the output from deno's drun module. import { Application, Router } from "https://deno.land/x/denotrain@v0.5.0/mod.ts"; const app = new Application(); const router = new Router(); // Middleware app.use((ctx) => { ctx.cookies["user.session"] = "qwertz"; ctx.cookies["a"] = "123"; ctx.cookies["b"] = "456"; delete ctx.cookies["user.session"]; return; })