xzh.js
289 Bytes
'use strict';
/**
* [百度熊掌号]
* @type {[type]}
*/
const XzhIndexModel = require('../../models/xzh/index');
const index = (req, res) => {
return req.ctx(XzhIndexModel).index().then(result => {
return res.json(result);
});
};
module.exports = {
index
};