blob: c00b5b644b5d869279f7f3789bdeff6fed86eb03 [file] [log] [blame]
Matteo Scandolo7547f042016-02-09 09:13:30 -08001(function () {
2 'use strict';
3 angular.module('xos.serviceTopology')
4 .directive('logicTopology', function(){
5 return {
6 restrict: 'E',
7 scope: {
8 serviceChain: '='
9 },
10 bindToController: true,
11 controllerAs: 'vm',
12 template: '',
13 controller: function($element, $log){
14 $log.info('Logic Plane');
15
16
17 }
18 };
19 });
20})();