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)
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)
def third_command(subcommand, **kwargs): """My third command.""" return handle_subcommands("third_command", subcommand, **kwargs)