mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
15 lines
386 B
TypeScript
15 lines
386 B
TypeScript
import { GraphiteDatasource } from "./datasource";
|
|
import { GraphiteQueryCtrl } from "./query_ctrl";
|
|
import { GraphiteConfigCtrl } from "./config_ctrl";
|
|
|
|
class AnnotationsQueryCtrl {
|
|
static templateUrl = "partials/annotations.editor.html";
|
|
}
|
|
|
|
export {
|
|
GraphiteDatasource as Datasource,
|
|
GraphiteQueryCtrl as QueryCtrl,
|
|
GraphiteConfigCtrl as ConfigCtrl,
|
|
AnnotationsQueryCtrl
|
|
};
|