checkLogin.js 169 B

12345678
  1. 'use strict';
  2. const _ = require('lodash');
  3. const whiteList = [];
  4. module.exports = options => {
  5. return async function checklogin(ctx, next) {
  6. await next();
  7. };
  8. };