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

8 lines
128 B
JavaScript

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