UNPKG

132 BJavaScriptView Raw
1**
2 * Mock remote service
3 */
4module.exports = function(app) {
5 return {
6 doService: function(cb) {
7 cb(null, app.id);
8 }
9 };
10};
\No newline at end of file