Remove GBP-UI and all Dlux dependencies
[groupbasedpolicy.git] / groupbasedpolicy-ui / module / src / main / resources / gbp / common / topology / next_topology.module.js
diff --git a/groupbasedpolicy-ui/module/src/main/resources/gbp/common/topology/next_topology.module.js b/groupbasedpolicy-ui/module/src/main/resources/gbp/common/topology/next_topology.module.js
deleted file mode 100644 (file)
index 44bc096..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-var controllers = [
-
-];
-
-var services = [
-    'app/gbp/common/topology/next_topology.service'
-];
-
-var models = [
-
-];
-
-var directives = [
-    'app/gbp/common/topology/next_topology.directive'
-];
-
-define(['angular'].concat(controllers).concat(services).concat(models).concat(directives),
-
-    function(angular, NextTopologyService, NextTopology ) {
-        'use strict';
-
-        angular
-            .module('app.nextTopo', [])
-            .config(config);
-
-        function config() {
-
-        }
-
-        angular.module('app.nextTopo')
-            .service('NextTopologyService', NextTopologyService)
-            .directive('nextTopology', NextTopology);
-
-});