router.js 392 Bytes
/**
 * 路由处理
 * @author: xuqi<qi.xu@yoho.cn>
 * @date: 2016/3/28
 */
const express = require('express');

const app = new express.Router();
const routes = './routes';

var index = require(`${routes}/index`);
var wxLottery = require(`${routes}/wxLottery/index`);

app.get('/', index.index); // 主页
app.get('/wxLottery', wxLottery.index); // 微信抽奖活动

module.exports = app;