mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
25 lines
566 B
TypeScript
25 lines
566 B
TypeScript
import InfluxDatasource from './datasource';
|
|
import {InfluxQueryCtrl} from './query_ctrl';
|
|
|
|
class InfluxConfigCtrl {
|
|
static templateUrl = 'partials/config.html';
|
|
}
|
|
|
|
class InfluxQueryOptionsCtrl {
|
|
static templateUrl = 'partials/query.options.html';
|
|
}
|
|
|
|
class InfluxAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
InfluxDatasource as Datasource,
|
|
InfluxQueryCtrl as QueryCtrl,
|
|
InfluxConfigCtrl as ConfigCtrl,
|
|
InfluxQueryOptionsCtrl as QueryOptionsCtrl,
|
|
InfluxAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
};
|
|
|
|
|