def get_snippets()

in service/azservice/__main__.py [0:0]


def get_snippets(command_table):
    snippets = []
    for command in command_table.values():
        if command.name.startswith('appservice web'):
            continue
        completion = {
            'name': ' '.join(reversed(command.name.split())),
            'kind': 'snippet',
            'detail': command.name
        }
        add_command_documentation(completion, command)
        snippets.append({
            'subcommand': command.name,
            'completion': completion
        })
    return snippets