2016-02-02 12:52:43 +01:00
|
|
|
import {GraphiteDatasource} from './datasource';
|
|
|
|
|
import {GraphiteQueryCtrl} from './query_ctrl';
|
2017-08-07 16:10:59 +03:00
|
|
|
import {GraphiteConfigCtrl} from './config_ctrl';
|
2016-02-02 12:52:43 +01:00
|
|
|
|
2016-02-02 18:16:30 +01:00
|
|
|
class AnnotationsQueryCtrl {
|
2016-02-09 18:17:32 +01:00
|
|
|
static templateUrl = 'partials/annotations.editor.html';
|
2016-02-02 18:16:30 +01:00
|
|
|
}
|
2016-02-02 15:15:20 +01:00
|
|
|
|
2016-02-02 12:52:43 +01:00
|
|
|
export {
|
|
|
|
|
GraphiteDatasource as Datasource,
|
|
|
|
|
GraphiteQueryCtrl as QueryCtrl,
|
2016-02-02 15:15:20 +01:00
|
|
|
GraphiteConfigCtrl as ConfigCtrl,
|
2016-02-02 18:16:30 +01:00
|
|
|
AnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
2016-02-02 12:52:43 +01:00
|
|
|
};
|
|
|
|
|
|