Files
grafana/public/app/plugins/datasource/influxdb-ifql/module.ts

18 lines
432 B
TypeScript
Raw Normal View History

2018-05-30 11:29:44 +02:00
import InfluxDatasource from './datasource';
import { InfluxQueryCtrl } from './query_ctrl';
class InfluxConfigCtrl {
static templateUrl = 'partials/config.html';
}
class InfluxAnnotationsQueryCtrl {
static templateUrl = 'partials/annotations.editor.html';
}
export {
InfluxDatasource as Datasource,
InfluxQueryCtrl as QueryCtrl,
InfluxConfigCtrl as ConfigCtrl,
InfluxAnnotationsQueryCtrl as AnnotationsQueryCtrl,
};