mirror of https://github.com/grafana/grafana.git
18 lines
384 B
TypeScript
18 lines
384 B
TypeScript
import { TestDataDatasource } from './datasource';
|
|
import { TestDataQueryCtrl } from './query_ctrl';
|
|
|
|
class TestDataAnnotationsQueryCtrl {
|
|
annotation: any;
|
|
|
|
constructor() {}
|
|
|
|
static template = '<h2>test data</h2>';
|
|
}
|
|
|
|
export {
|
|
TestDataDatasource,
|
|
TestDataDatasource as Datasource,
|
|
TestDataQueryCtrl as QueryCtrl,
|
|
TestDataAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
};
|