index.js 238 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 /** * middleware 入口 * @author: feng.chen<feng.chen@yoho.cn> * @date: 2017/04/13 */ const before = require('./before'); const proxy = require('./proxy'); const error = require('./error'); module.exports = {before, proxy, error};