summaryrefslogtreecommitdiff
path: root/vyroute/Routing.py
diff options
context:
space:
mode:
Diffstat (limited to 'vyroute/Routing.py')
-rw-r--r--vyroute/Routing.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/vyroute/Routing.py b/vyroute/Routing.py
deleted file mode 100644
index 8c1ec11..0000000
--- a/vyroute/Routing.py
+++ /dev/null
@@ -1,29 +0,0 @@
-# author=hochikong
-from vyroute.basic_function import RIPRoute
-from vyroute.basic_function import StaticRoute
-
-
-class BasicRouting(object):
- def static_routing(self,data):
- pass
-
- def rip_routing(self,data):
- pass
-
- def ospf_routing(self,data):
- pass
-
-
-class Routing(BasicRouting):
- def static_routing(self, data):
- return StaticRoute.staticroute(data)
-
- def rip_routing(self,data):
- return RIPRoute.riproute(data)
-
-
-
-
-
-
-