feat: add console.log #1340

Merged
joan merged 1 commits from post_add_consoleLog into test 2023-02-21 13:58:11 +00:00
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@ module.exports = Self => {
});
Self.post = async ctx => {
console.log(ctx.req.body);
return ctx.req.body;
};
};