9 lines
101 B
JavaScript
Raw Normal View History

2019-04-09 21:51:28 +02:00
module.exports = {
findOne(ctx) {
ctx.body = {};
},
find(ctx) {
ctx.body = [];
},
};