blob: 8d737cb8c044565fe081b2e2ffdc4cc2606b57f5 [file] [log] [blame]
/**
* Controller for index
*
* @module app/multi-server
* @exports multiServerController
* @name multiServerController
* @version 0.1.0
*/
window.angular && (function (angular) {
'use strict';
angular
.module('app.overview')
.controller('multiServerController', [
'$scope',
'$window',
'APIUtils',
'dataService',
function($scope, $window, APIUtils, dataService){
$scope.dataService = dataService;
$scope.loading = false;
}
]
);
})(angular);