blob: 724ce9ad4990aee752df93f30428caef7249f81c [file] [log] [blame]
Matteo Scandolofbd486c2016-04-13 10:19:55 -07001(function() {
2 'use strict';
Matteo Scandolo4b3bf7f2016-04-12 11:38:40 -07003
Matteo Scandolofbd486c2016-04-13 10:19:55 -07004 /*
5 * List of the active onos services
Matteo Scandolo4b3bf7f2016-04-12 11:38:40 -07006
Matteo Scandolofbd486c2016-04-13 10:19:55 -07007 */
Matteo Scandolo4b3bf7f2016-04-12 11:38:40 -07008
Matteo Scandolofbd486c2016-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})();