r2/pomelo/lib/components/channel.js
lightings ebfa604df2 ...
2023-05-10 12:45:55 +08:00

8 lines
249 B
JavaScript

var ChannelService = require('../common/service/channelService');
module.exports = function(app, opts) {
var service = new ChannelService(app, opts);
app.set('channelService', service, true);
service.name = '__channel__';
return service;
};