blob: 724ce9ad4990aee752df93f30428caef7249f81c [file] [log] [blame]
Matteo Scandolo1dc8f3f2016-04-13 10:19:55 -07001(function() {
2 'use strict';
Matteo Scandoloc7987cd2016-04-12 11:38:40 -07003
Matteo Scandolo1dc8f3f2016-04-13 10:19:55 -07004 /*
5 * List of the active onos services
Matteo Scandoloc7987cd2016-04-12 11:38:40 -07006
Matteo Scandolo1dc8f3f2016-04-13 10:19:55 -07007 */
Matteo Scandoloc7987cd2016-04-12 11:38:40 -07008
Matteo Scandolo1dc8f3f2016-04-13 10:19:55 -07009 angular.module('xos.helpers')
10 .service('ONOS-Services-Collection', function($resource){
11 return $resource('/api/service/onos/');
12 })
13})();