Files
koa-bugapi/controllers/index.js
2020-02-24 12:44:42 +08:00

8 lines
146 B
JavaScript

let index = async (ctx,next)=>{
console.log(JSON.stringify(ctx.query))
ctx.body = "ok"
next()
}
module.exports = {
"GET /":index
}