router.js
422 Bytes
/**
* router of sub app channel
* @author: Bi Kai<kai.bi@yoho.cn>
* @date: 2016/05/09
*/
'use strict';
const express = require('express');
const cRoot = './controllers';
const common = require(cRoot);
const router = express.Router(); // eslint-disable-line
router.get('/offline.html', common.offline); // 离线页面
router.get('/activity/offline.html', common.offline); // 离线页面
module.exports = router;