2016-02-02 05:52:43 -06:00
|
|
|
import {GraphiteDatasource} from './datasource';
|
|
|
|
import {GraphiteQueryCtrl} from './query_ctrl';
|
|
|
|
|
2016-02-02 08:15:20 -06:00
|
|
|
class GraphiteConfigCtrl {
|
2016-02-09 11:17:32 -06:00
|
|
|
static templateUrl = 'partials/config.html';
|
2016-02-02 05:52:43 -06:00
|
|
|
}
|
|
|
|
|
2016-02-02 08:15:20 -06:00
|
|
|
class GraphiteQueryOptionsCtrl {
|
2016-02-09 11:17:32 -06:00
|
|
|
static templateUrl = 'partials/query.options.html';
|
2016-02-02 08:15:20 -06:00
|
|
|
}
|
|
|
|
|
2016-02-02 11:16:30 -06:00
|
|
|
class AnnotationsQueryCtrl {
|
2016-02-09 11:17:32 -06:00
|
|
|
static templateUrl = 'partials/annotations.editor.html';
|
2016-02-02 11:16:30 -06:00
|
|
|
}
|
2016-02-02 08:15:20 -06:00
|
|
|
|
2016-02-02 05:52:43 -06:00
|
|
|
export {
|
|
|
|
GraphiteDatasource as Datasource,
|
|
|
|
GraphiteQueryCtrl as QueryCtrl,
|
2016-02-02 08:15:20 -06:00
|
|
|
GraphiteConfigCtrl as ConfigCtrl,
|
|
|
|
GraphiteQueryOptionsCtrl as QueryOptionsCtrl,
|
2016-02-02 11:16:30 -06:00
|
|
|
AnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
2016-02-02 05:52:43 -06:00
|
|
|
};
|
|
|
|
|