blob: 0b3a622ec0b18a9ef3426d9b1867a8e1c92fafc3 [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
7 * @version 0.1.0
8 */
9
10window.angular && (function (angular) {
11 'use strict';
12
13 angular
14 .module('app.firmware')
15 .controller('bmcController', [
16 '$scope',
17 '$window',
18 'APIUtils',
19 'dataService',
20 function($scope, $window, APIUtils, dataService){
21 $scope.dataService = dataService;
22 }
23 ]
24 );
25
26})(angular);