mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 14:59:41 +02:00
7 lines
224 B
JavaScript
7 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'}
|
|
});
|
|
}]);
|