index.js 248 Bytes
/**
 * 中间件入口
 * @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};