Files
crewAI/lib/crewai/src/crewai/a2a/utils/delegation.py

14 lines
380 B
Python

"""Backward-compatibility shim — use ``crewai_a2a.utils.delegation`` instead."""
import warnings
warnings.warn(
"'crewai.a2a.utils.delegation' has been moved to 'crewai_a2a.utils.delegation'. "
"Please update your imports. The old path will be removed in v2.0.0.",
FutureWarning,
stacklevel=2,
)
from crewai_a2a.utils.delegation import * # noqa: E402, F403