mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
17 lines
473 B
TypeScript
17 lines
473 B
TypeScript
import './query_parameter_ctrl';
|
|
|
|
import CloudWatchDatasource from './datasource';
|
|
import { CloudWatchQueryCtrl } from './query_ctrl';
|
|
import { CloudWatchConfigCtrl } from './config_ctrl';
|
|
|
|
class CloudWatchAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
CloudWatchDatasource as Datasource,
|
|
CloudWatchQueryCtrl as QueryCtrl,
|
|
CloudWatchConfigCtrl as ConfigCtrl,
|
|
CloudWatchAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
};
|