blob: 78e87a7640a32228ee178c60bead38b8a916b9fa [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
Andrew Geisslerba5e3f32018-05-24 10:58:00 -07009window.angular && (function(angular) {
10 'use strict';
Iftekharul Islameed35842017-09-06 10:49:48 -050011
Andrew Geisslerba5e3f32018-05-24 10:58:00 -070012 angular
13 .module('app.firmware')
14 .controller('bmcController', [
15 '$scope',
16 '$window',
17 'APIUtils',
18 'dataService',
19 function($scope, $window, APIUtils, dataService) {
20 $scope.dataService = dataService;
21 }
22 ]);
Iftekharul Islameed35842017-09-06 10:49:48 -050023
24})(angular);