/** * @param {Egg.Application} app - egg application */ module.exports = app => { require('./admin')(app); // 管理员 require('./user')(app); // 用户 };