blob: c00b5b644b5d869279f7f3789bdeff6fed86eb03 [file] [log] [blame]
(function () {
'use strict';
angular.module('xos.serviceTopology')
.directive('logicTopology', function(){
return {
restrict: 'E',
scope: {
serviceChain: '='
},
bindToController: true,
controllerAs: 'vm',
template: '',
controller: function($element, $log){
$log.info('Logic Plane');
}
};
});
})();