const router = require("@koa/router")(); router.get("/", async function (ctx) { const title = "Koa.js"; ctx.body = ` ${title}

${title}

Welcome to ${title}

`; }); module.exports = router;