2017-12-20 05:33:33 -06:00
|
|
|
import InfluxDatasource from './datasource';
|
|
|
|
import { InfluxQueryCtrl } from './query_ctrl';
|
2016-02-02 15:58:37 -06:00
|
|
|
|
|
|
|
class InfluxConfigCtrl {
|
2017-12-20 05:33:33 -06:00
|
|
|
static templateUrl = 'partials/config.html';
|
2016-02-02 15:58:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
class InfluxAnnotationsQueryCtrl {
|
2017-12-20 05:33:33 -06:00
|
|
|
static templateUrl = 'partials/annotations.editor.html';
|
2016-02-02 15:58:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
InfluxDatasource as Datasource,
|
|
|
|
InfluxQueryCtrl as QueryCtrl,
|
|
|
|
InfluxConfigCtrl as ConfigCtrl,
|
2017-12-20 05:33:33 -06:00
|
|
|
InfluxAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
2016-02-02 15:58:37 -06:00
|
|
|
};
|