10 lines
226 B
JavaScript
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; |