router.js 371 Bytes
/**
 * router of sub app brands
 * @author: ghw<hongwei.gao@yoho.cn>
 * @date: 2016/09/29
 */

'use strict';

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

const router = express.Router(); // eslint-disable-line
const brandsController = require(`${cRoot}/brands`);

// 品牌一览
router.get('', brandsController.index);


module.exports = router;