blob: b13ccda0061f60eed07394d9ccc9377aadd0e1fb [file] [log] [blame]
Matteo Scandoloa5d03d52016-07-21 11:35:46 -07001(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})();