index.js 224 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 user = require('./user'); module.exports = {auth, user, error};