index.js 248 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 /** * 中间件入口 * @author: qi.li<qi.li@yoho.cn> * @date: 2017/06/23 */ 'use strict'; const auth = require('./auth'); const error = require('./error'); const authAdmin = require('./authAdmin'); module.exports = {auth, error, authAdmin};