Authored by xuqi

main app router

... ... @@ -5,5 +5,8 @@
*/
module.exports = app => {
//公共服务
//业务模块
app.use('/guang', require('./apps/guang'));
};
... ...
/**
* 通用路由处理
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2016/4/28
*/
'use strict';
const router = require('express').Router();
const cRoot = './controllers';
module.exports = router;
\ No newline at end of file
... ...