12 lines
430 B
JavaScript
12 lines
430 B
JavaScript
'use strict';
|
|
|
|
angular.module('adagios.tactical', ['adagios.tactical.status_overview',
|
|
'adagios.tactical.current_health',
|
|
'adagios.tactical.top_alert_producers',
|
|
'adagios.table'
|
|
])
|
|
|
|
.controller('TacticalCtrl', ['$scope', '$http', function ($scope, $http) {
|
|
return;
|
|
}]);
|