router.js
333 Bytes
/**
* router of sub app coupon
* @author: lixia.zhang<lixia.zhang@yoho.cn>
* @date: 2016/05/31
*/
'use strict';
const router = require('express').Router(); // eslint-disable-line
const cRoot = './controllers';
const hotfix = require(`${cRoot}/hotfix`);
// routers
router.post('/hf/v1', hotfix.v1);
module.exports = router;