Files
hiring-test-one/example/mock/mocks/five.js

9 lines
119 B
JavaScript
Raw Normal View History

2015-11-24 11:46:47 +00:00
module.exports = {
response: function (ctx, id, name) {
this.body = {
id: id,
name: name
}
}
}