2019-04-16 08:50:47 +02:00

9 lines
101 B
JavaScript

module.exports = {
findOne(ctx) {
ctx.body = {};
},
find(ctx) {
ctx.body = [];
},
};