mirror of
https://github.com/grafana/grafana.git
synced 2025-01-09 23:53:25 -06:00
12 lines
326 B
TypeScript
12 lines
326 B
TypeScript
|
export class StackdriverConfigCtrl {
|
||
|
static templateUrl = 'public/app/plugins/datasource/stackdriver/partials/config.html';
|
||
|
datasourceSrv: any;
|
||
|
current: any;
|
||
|
|
||
|
/** @ngInject */
|
||
|
constructor($scope, datasourceSrv) {
|
||
|
this.datasourceSrv = datasourceSrv;
|
||
|
this.current.jsonData = this.current.jsonData || {};
|
||
|
}
|
||
|
}
|