blob: 42a4f18125bbe1c4a4f4602f525083fafb67679f [file] [log] [blame]
Iftekharul Islameed35842017-09-06 10:49:48 -05001/**
2 * Controller for bmc
3 *
4 * @module app/firmware
5 * @exports bmcController
6 * @name bmcController
Iftekharul Islameed35842017-09-06 10:49:48 -05007 */
8
9window.angular && (function (angular) {
10 'use strict';
11
12 angular
13 .module('app.firmware')
14 .controller('bmcController', [
Gunnar Millseedefd32018-02-28 17:02:34 -060015 '$scope',
16 '$window',
17 'APIUtils',
Iftekharul Islameed35842017-09-06 10:49:48 -050018 'dataService',
19 function($scope, $window, APIUtils, dataService){
20 $scope.dataService = dataService;
21 }
22 ]
23 );
24
25})(angular);