mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-07-01 13:18:10 +00:00
13 lines
273 B
Python
13 lines
273 B
Python
"""Re-export of ``crewai_core.plus_api.PlusAPI``.
|
|
|
|
Kept as a stable import path for the CLI; new code should import from
|
|
``crewai_core.plus_api`` directly.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from crewai_core.plus_api import PlusAPI as PlusAPI
|
|
|
|
|
|
__all__ = ["PlusAPI"]
|