• This project
    • Loading...
  • Sign in

张泽世 / yohobuywap-node · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohobuywap-node
  • apps
  • guang
  • router.js
  • Merge branch 'feature/m-product' into developwap
    6a1a66b6
    by biao
    2016-05-13 20:33:13 +0800  
    Browse Files
router.js 352 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/**
 * router of sub app guang
 * @author: biao<bill.zhao@yoho.cn>
 * @date: 2016/05/12
 */

'use strict';

const router = require('express').Router(); // eslint-disable-line
const cRoot = './controllers';


const guangController = require(`${cRoot}/index`);

 // Your controller here

router.get('/', guangController.index);

module.exports = router;