'use strict'; /** * * * @author Mai * @date * @version */ module.exports = app => { return async (ctx, next) => { ctx.socket.emit('res', 'connected!'); await next(); }; };