blob: 3d386720f2f4621d24c3767a31a4634595507008 [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 Geisslerd27bb132018-05-24 11:07:27 -070012 angular.module('app.firmware').controller('bmcController', [
13 '$scope', '$window', 'APIUtils', 'dataService',
14 function($scope, $window, APIUtils, dataService) {
15 $scope.dataService = dataService;
16 }
17 ]);
Iftekharul Islameed35842017-09-06 10:49:48 -050018
19})(angular);