2021-09-01 18:38:40 +02:00

9 lines
101 B
JavaScript

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