blob: 8d737cb8c044565fe081b2e2ffdc4cc2606b57f5 [file] [log] [blame]
Iftekharul Islam08054412017-08-25 10:29:57 -05001/**
2 * Controller for index
3 *
4 * @module app/multi-server
5 * @exports multiServerController
6 * @name multiServerController
7 * @version 0.1.0
8 */
9
10window.angular && (function (angular) {
11 'use strict';
12
13 angular
14 .module('app.overview')
15 .controller('multiServerController', [
16 '$scope',
17 '$window',
18 'APIUtils',
19 'dataService',
20 function($scope, $window, APIUtils, dataService){
21 $scope.dataService = dataService;
22 $scope.loading = false;
23
24 }
25 ]
26 );
27
28})(angular);