def apps_list()

in dell_ai/cli/main.py [0:0]


def apps_list() -> None:
    """
    List all available applications from the Dell Enterprise Hub.

    Returns a JSON array of application names.
    """
    try:
        client = get_client()
        apps = client.list_apps()
        print_json(apps)
    except Exception as e:
        print_error(f"Failed to list applications: {str(e)}")