blob: 9a74e6d43f1eca634f4567c633be844ffd3a7cff [file] [log] [blame]
Iftekharul Islamcd789502017-04-19 14:37:55 -05001/**
2 * Controller for server
3 *
4 * @module app/serverHealth
5 * @exports powerConsumptionController
6 * @name powerConsumptionController
Iftekharul Islamcd789502017-04-19 14:37:55 -05007 */
8
Andrew Geisslerba5e3f32018-05-24 10:58:00 -07009window.angular && (function(angular) {
10 'use strict';
Iftekharul Islamcd789502017-04-19 14:37:55 -050011
Andrew Geisslerba5e3f32018-05-24 10:58:00 -070012 angular
13 .module('app.serverHealth')
14 .controller('powerConsumptionController', [
15 '$scope',
16 '$window',
17 'APIUtils',
18 'dataService',
19 function($scope, $window, APIUtils, dataService) {
20 $scope.dataService = dataService;
21 }
22 ]);
Iftekharul Islamcd789502017-04-19 14:37:55 -050023
24})(angular);