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;