import Koa from "koa" import requter from "./util/Router.js" const app = new Koa(); app.use(async ctx => { ctx.body = 'Hello World'; }); app.listen(4000)