def nautobot(subcommand, **kwargs):
    """Interact with Nautobot."""
    return handle_subcommands("nautobot", subcommand, **kwargs)
def first_command(subcommand, **kwargs):
    """My first command."""
    return handle_subcommands("first_command", subcommand, **kwargs)
示例#3
0
def dynamic_command(subcommand, **kwargs):
    """My Dynamic command."""
    return handle_subcommands("dynamic_command", subcommand, **kwargs)
def second_command(subcommand, **kwargs):
    """My second command."""
    return handle_subcommands("second_command", subcommand, **kwargs)
示例#5
0
def third_command(subcommand, **kwargs):
    """My third command."""
    return handle_subcommands("third_command", subcommand, **kwargs)