UNPKG

occaecatidicta

Version:
11 lines 158 B
/** * Mock remote service */ module.exports = function(app) { return { doService: function(cb) { cb(null, app.id); }, name: 'whoAmIRemote' }; };