mirror of https://github.com/grafana/grafana.git
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);
|
|
}
|
|
}
|