'use strict'; const _ = require('lodash'); module.exports = options => { return async function userCreateCheck(ctx, next) { await ctx.service.user.createCheck(); await next(); }; };