mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
12 lines
391 B
TypeScript
12 lines
391 B
TypeScript
|
|
import Datasource from './datasource';
|
||
|
|
import { AzureMonitorQueryCtrl } from './query_ctrl';
|
||
|
|
import { AzureMonitorAnnotationsQueryCtrl } from './annotations_query_ctrl';
|
||
|
|
import { AzureMonitorConfigCtrl } from './config_ctrl';
|
||
|
|
|
||
|
|
export {
|
||
|
|
Datasource,
|
||
|
|
AzureMonitorQueryCtrl as QueryCtrl,
|
||
|
|
AzureMonitorConfigCtrl as ConfigCtrl,
|
||
|
|
AzureMonitorAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
||
|
|
};
|