Authored by xuqi

main app router

@@ -5,5 +5,8 @@ @@ -5,5 +5,8 @@
5 */ 5 */
6 6
7 module.exports = app => { 7 module.exports = app => {
  8 + //公共服务
  9 +
  10 + //业务模块
8 app.use('/guang', require('./apps/guang')); 11 app.use('/guang', require('./apps/guang'));
9 }; 12 };
  1 +/**
  2 + * 通用路由处理
  3 + * @author: xuqi<qi.xu@yoho.cn>
  4 + * @date: 2016/4/28
  5 + */
  6 +
  7 +'use strict';
  8 +
  9 +const router = require('express').Router();
  10 +const cRoot = './controllers';
  11 +
  12 +
  13 +module.exports = router;