Commit fe2acb85 by edems

functions added to RouterManager interface

parent 0f91257e
...@@ -14,6 +14,12 @@ class RouterManager: ...@@ -14,6 +14,12 @@ class RouterManager:
def update(self, id, params) -> Router: def update(self, id, params) -> Router:
raise NotImplementedError raise NotImplementedError
def add_interface(self, id, subnet_id) -> Router:
raise NotImplementedError
def add_gateway(self, id, network_id) -> Router:
raise NotImplementedError
def delete(self, id) -> bool: def delete(self, id) -> bool:
raise NotImplementedError raise NotImplementedError
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment