summaryrefslogtreecommitdiff
path: root/vyroute/Routing.py
diff options
context:
space:
mode:
authorHochikong <michellehzg@gmail.com>2016-05-24 01:05:26 +0800
committerHochikong <michellehzg@gmail.com>2016-05-24 01:05:26 +0800
commit9eca534f9735c8c5e984ce5a3add7cbb9daa4345 (patch)
tree7f2555294adf102455f5a3f6d78c44aba3c72f8b /vyroute/Routing.py
parent8e2f9aa509a5d90897844c196675836a10068237 (diff)
downloadpython-vyos-mgmt-9eca534f9735c8c5e984ce5a3add7cbb9daa4345.tar.gz
python-vyos-mgmt-9eca534f9735c8c5e984ce5a3add7cbb9daa4345.zip
too more changes,i donno what to say
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)
-
-
-
-
-
-
-