2016-03-23 08:42:18 -05:00
|
|
|
import InfluxDatasource from './datasource';
|
2016-02-02 15:58:37 -06:00
|
|
|
import {InfluxQueryCtrl} from './query_ctrl';
|
|
|
|
|
|
|
|
class InfluxConfigCtrl {
|
2016-02-09 11:17:32 -06:00
|
|
|
static templateUrl = 'partials/config.html';
|
2016-02-02 15:58:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
class InfluxQueryOptionsCtrl {
|
2016-02-09 11:17:32 -06:00
|
|
|
static templateUrl = 'partials/query.options.html';
|
2016-02-02 15:58:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
class InfluxAnnotationsQueryCtrl {
|
2016-02-09 11:17:32 -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,
|
|
|
|
InfluxQueryOptionsCtrl as QueryOptionsCtrl,
|
|
|
|
InfluxAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
|
|
};
|
|
|
|
|
2016-02-03 09:31:07 -06:00
|
|
|
|