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

8 lines
138 B
JavaScript

let index = async (ctx,next)=>{
console.log(ctx.request.body)
ctx.body = "ok"
next()
}
module.exports = {
"POST /":index
}