mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
define([
|
|
'angular',
|
|
],
|
|
function (angular) {
|
|
'use strict';
|
|
|
|
var module = angular.module('grafana.directives');
|
|
|
|
module.directive('metricQueryEditorCloudwatch', function() {
|
|
return {controller: 'CloudWatchQueryCtrl', templateUrl: 'app/plugins/datasource/cloudwatch/partials/query.editor.html'};
|
|
});
|
|
|
|
});
|