mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
|
|
import './add_graphite_func';
|
||
|
|
import './func_editor';
|
||
|
|
import { QueryCtrl } from 'app/plugins/sdk';
|
||
|
|
|
||
|
|
export class StackdriverQueryCtrl extends QueryCtrl {
|
||
|
|
static templateUrl = 'partials/query.editor.html';
|
||
|
|
/** @ngInject */
|
||
|
|
constructor($scope, $injector) {
|
||
|
|
super($scope, $injector);
|
||
|
|
}
|
||
|
|
}
|