mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-07 18:19:00 +00:00
9 lines
235 B
Python
9 lines
235 B
Python
"""Re-export of ``BaseProvider`` from ``crewai_core.auth.providers.base_provider``."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from crewai_core.auth.providers.base_provider import BaseProvider as BaseProvider
|
|
|
|
|
|
__all__ = ["BaseProvider"]
|