mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 07:43:35 -05:00
8 lines
380 B
JavaScript
8 lines
380 B
JavaScript
import hostStatus from 'tower/dashboard/graphs/host-status/main';
|
|
import jobStatus from 'tower/dashboard/graphs/job-status/main';
|
|
import dashboardGraphsDirective from 'tower/dashboard/graphs/dashboard-graphs.directive';
|
|
|
|
export default
|
|
angular.module('DashboardGraphModules', [hostStatus.name, jobStatus.name])
|
|
.directive('dashboardGraphs', dashboardGraphsDirective);
|