def apps_show()

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


def apps_show(app_id: str) -> None:
    """
    Show detailed information about a specific application.

    Args:
        app_id: The application ID
    """
    try:
        client = get_client()
        app_info = client.get_app(app_id)
        print_json(app_info.model_dump())
    except ResourceNotFoundError:
        print_error(f"Application not found: {app_id}")
    except Exception as e:
        print_error(f"Failed to get application information: {str(e)}")