mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
18 lines
464 B
TypeScript
18 lines
464 B
TypeScript
import {PrometheusDatasource} from './datasource';
|
|
import {PrometheusQueryCtrl} from './query_ctrl';
|
|
|
|
class PrometheusConfigCtrl {
|
|
static templateUrl = 'partials/config.html';
|
|
}
|
|
|
|
class PrometheusAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
PrometheusDatasource as Datasource,
|
|
PrometheusQueryCtrl as QueryCtrl,
|
|
PrometheusConfigCtrl as ConfigCtrl,
|
|
PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
};
|