mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* devenv: working on dev env setup & dashboards * devenv: refactored testdata app to a built in datasource instead, and moved dashboards to a devenv provisioned dashboards
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,
|
|
};
|