| (function() { | |
| 'use strict'; | |
| angular.module('xos.helpers') | |
| /** | |
| * @ngdoc service | |
| * @name xos.helpers.ONOS-App-Collection | |
| * @description Angular resource to fetch /api/tenant/onos/app/ | |
| **/ | |
| .service('ONOS-App-Collection', function($resource){ | |
| return $resource('/api/tenant/onos/app/'); | |
| }) | |
| })(); |