UNPKG

occaecatidicta

Version:
11 lines 178 B
/** * Mock remote service */ module.exports = function(app) { return { doService: function(value, cb) { cb(null, value + 2); }, name: 'addTwoRemote' }; };