blob: 5d5da4a1bae34f1f8320e037ad34f5fd70609e91 [file] [log] [blame]
Iftekharul Islameed35842017-09-06 10:49:48 -05001/**
2 * Controller for server
3 *
4 * @module app/firmware
5 * @exports serverController
6 * @name serverController
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('serverController', [
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);