lightings 4c647507d2 init
2023-03-27 17:26:02 +08:00

10 lines
226 B
JavaScript

module.exports = function(app) {
return new ChatRemote(app, app.get('chatService'));
}
var ChatRemote = function(app, chatService) {
this.app = app;
this.chatService = chatService;
}
var handler = ChatRemote.prototype;