Files
awx/awx/ui/static/js/dashboard/graphs/main.js
2015-05-29 09:53:39 -04:00

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);