cf6d5cd45416ae1f171df995f8215a6cccd2b88e
[vsorcdistro/.git] / root.py
1 from ryu.services.protocols.bgp.operator.command import Command
2 from ryu.services.protocols.bgp.operator.commands.clear import ClearCmd
3 from ryu.services.protocols.bgp.operator.commands.set import SetCmd
4 from ryu.services.protocols.bgp.operator.commands.show import ShowCmd
5
6
7 class RootCmd(Command):
8     subcommands = {
9         'show': ShowCmd,
10         'set': SetCmd,
11         'clear': ClearCmd}