router.js
308 Bytes
/**
* 路由处理
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2016/3/28
*/
'use stricts';
const express = require('express');
const app = new express.Router();
const routes = './routes';
var wxLottery = require(`${routes}/wxLottery/index`);
app.get('/wxLottery', wxLottery.index);
module.exports = app;