channel.js 249 B

12345678
  1. var ChannelService = require('../common/service/channelService');
  2. module.exports = function(app, opts) {
  3. var service = new ChannelService(app, opts);
  4. app.set('channelService', service, true);
  5. service.name = '__channel__';
  6. return service;
  7. };