backing up
[vsorcdistro/.git] / ryu / build / lib.linux-armv7l-2.7 / ryu / services / protocols / bgp / operator / commands / 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}