module.ts 353 B

123456789101112
  1. import {PrometheusDatasource} from './datasource';
  2. import {PrometheusQueryCtrl} from './query_ctrl';
  3. class PrometheusConfigViewCtrl {
  4. static templateUrl = 'public/app/plugins/datasource/prometheus/partials/config.html';
  5. }
  6. export {
  7. PrometheusDatasource as Datasource,
  8. PrometheusQueryCtrl as QueryCtrl,
  9. PrometheusConfigViewCtrl as ConfigView
  10. };