mirror of
https://github.com/grafana/grafana.git
synced 2025-01-26 08:16:59 -06:00
15 lines
390 B
TypeScript
15 lines
390 B
TypeScript
import OpenTsDatasource from './datasource';
|
|
import {OpenTsQueryCtrl} from './query_ctrl';
|
|
import {OpenTsConfigCtrl} from './config_ctrl';
|
|
|
|
class AnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
OpenTsDatasource as Datasource,
|
|
OpenTsQueryCtrl as QueryCtrl,
|
|
OpenTsConfigCtrl as ConfigCtrl,
|
|
AnnotationsQueryCtrl as AnnotationsQueryCtrl
|
|
};
|