| 12345678910 |
- const { _, debug, errorlog, log } = require('../lib/utils');
- module.exports = {
- api: async (req, res, next) => {
- if (req && !req.body) req.body = {};
- if (req && !req.params) req.params = {};
- if (req && !req.query) req.query = {};
- res.send({});
- },
- };
|