connection.js 203 B

12345678910111213141516
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Mai
  6. * @date
  7. * @version
  8. */
  9. module.exports = app => {
  10. return async (ctx, next) => {
  11. ctx.socket.emit('res', 'connected!');
  12. await next();
  13. };
  14. };