Files
grafana/public/app/plugins/datasource/testdata/module.ts
Torkel Ödegaard c6bcf13d78 Devenv testdata dashboards (#12615)
* 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
2018-07-16 03:12:13 -07:00

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,
};