blob: 0f9c05ce7138b96eddf0867885737b6f7111a5cc [file] [log] [blame]
(function () {
'use strict';
angular.module('xos.serviceGrid')
.directive('serviceGraph', function(){
return {
restrict: 'E',
scope: {},
bindToController: true,
controllerAs: 'vm',
templateUrl: 'templates/service-graph.tpl.html',
controller: function(){
}
};
})
})();