mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
import {PrometheusDatasource} from './datasource';
|
|
import {PrometheusQueryCtrl} from './query_ctrl';
|
|
|
|
class PrometheusConfigCtrl {
|
|
static templateUrl = 'public/app/plugins/datasource/prometheus/partials/config.html';
|
|
}
|
|
|
|
export {
|
|
PrometheusDatasource as Datasource,
|
|
PrometheusQueryCtrl as QueryCtrl,
|
|
PrometheusConfigCtrl as ConfigCtrl
|
|
};
|