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