mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
15 lines
443 B
TypeScript
15 lines
443 B
TypeScript
import { PrometheusDatasource } from './datasource';
|
|
import { PrometheusQueryCtrl } from './query_ctrl';
|
|
import { PrometheusConfigCtrl } from './config_ctrl';
|
|
|
|
class PrometheusAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
PrometheusDatasource as Datasource,
|
|
PrometheusQueryCtrl as QueryCtrl,
|
|
PrometheusConfigCtrl as ConfigCtrl,
|
|
PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
};
|