grafana/src/app/services/templateSrv.js

22 lines
284 B
JavaScript
Raw Normal View History

define([
'angular',
'lodash',
'kbn',
'store'
],
function (angular) {
'use strict';
var module = angular.module('grafana.services');
module.service('templateSrv', function() {
this.init = function(dashboard) {
this.dashboard = dashboard;
};
});
});