Example #1
0
    def load_command_table(self, args):
        from azext_iot.commands import load_command_table
        from azext_iot.iothub.command_bindings import load_iothub_commands
        from azext_iot.central.command_map import load_central_commands
        from azext_iot.digitaltwins.command_map import load_digitaltwins_commands

        load_command_table(self, args)
        load_iothub_commands(self, args)
        load_central_commands(self, args)
        load_digitaltwins_commands(self, args)

        return self.command_table
Example #2
0
 def load_command_table(self, args):
     from azext_iot.commands import load_command_table
     load_command_table(self, args)
     return self.command_table
Example #3
0
 def load_command_table(self, args):
     from azext_iot.commands import load_command_table
     load_command_table(self, args)
     from azext_iot.iothub.command_bindings import load_iothub_commands
     load_iothub_commands(self, args)
     return self.command_table