blob: 52127a45e4032e7fa5879928485930fc2a0f4d7b [file] [log] [blame]
Matteo Scandolobe9b13d2016-01-21 11:21:03 -08001(function () {
2 'use strict';
3
4 angular.module('xos.serviceTopology')
5 .factory('d3', function($window){
6 return $window.d3;
7 })
Matteo Scandolofb46f5b2016-01-25 10:10:38 -08008 .service('TreeLayout', function(){
9 this.updateTree = (source) => {
10
11 }
12 });
Matteo Scandolobe9b13d2016-01-21 11:21:03 -080013
14}());