module.ts 581 B

1234567891011121314151617181920
  1. import './query_parameter_ctrl';
  2. import {CloudWatchDatasource} from './datasource';
  3. import {CloudWatchQueryCtrl} from './query_ctrl';
  4. class CloudWatchConfigCtrl {
  5. static templateUrl = 'public/app/plugins/datasource/cloudwatch/partials/config.html';
  6. }
  7. class CloudWatchAnnotationsQueryCtrl {
  8. static templateUrl = 'public/app/plugins/datasource/cloudwatch/partials/annotations.editor.html';
  9. }
  10. export {
  11. CloudWatchDatasource as Datasource,
  12. CloudWatchQueryCtrl as QueryCtrl,
  13. CloudWatchConfigCtrl as ConfigCtrl,
  14. CloudWatchAnnotationsQueryCtrl as AnnotationsQueryCtrl,
  15. };