| Matteo Scandolo | 67e79cb | 2016-04-29 09:14:58 -0700 | [diff] [blame] | 1 | (function() { |
| 2 | 'use strict'; | ||||
| 3 | |||||
| 4 | angular.module('xos.helpers') | ||||
| 5 | /** | ||||
| 6 | * @ngdoc service | ||||
| 7 | * @name xos.helpers.Example-Services-Collection | ||||
| 8 | * @description Angular resource to fetch /api/service/exampleservice/ | ||||
| 9 | **/ | ||||
| 10 | .service('Example-Services-Collection', function($resource){ | ||||
| 11 | return $resource('/api/service/exampleservice/'); | ||||
| 12 | }) | ||||
| 13 | })(); | ||||