router.js 376 Bytes
/**
 * router of sub app channel
 * @author: Bi Kai<kai.bi@yoho.cn>
 * @date: 2016/05/09
 */

'use strict';

const expressRouter = require('express').Router;
const cRoot = './controllers';
const channel = require(cRoot);

const router = expressRouter();

router.get('/', channel.index); // 首页
router.get('/brand', channel.brand); // 店铺首页

module.exports = router;