mirror of https://github.com/portainer/portainer
8 lines
224 B
JavaScript
8 lines
224 B
JavaScript
|
angular.module('portainer.rest')
|
||
|
.factory('Swarm', ['$resource', 'Settings', function SwarmFactory($resource, Settings) {
|
||
|
'use strict';
|
||
|
return $resource(Settings.url + '/swarm', {}, {
|
||
|
get: {method: 'GET'}
|
||
|
});
|
||
|
}]);
|