blob: b13ccda0061f60eed07394d9ccc9377aadd0e1fb [file] [log] [blame]
(function() {
'use strict';
angular.module('xos.helpers')
/**
* @ngdoc service
* @name xos.helpers.Example-Services-Collection
* @description Angular resource to fetch /api/service/exampleservice/
**/
.service('Example-Services-Collection', function($resource){
return $resource('/api/service/exampleservice/');
})
})();