Files
crewAI/lib/cli/src/crewai_cli/authentication/providers/auth0.py
2026-05-06 20:46:46 +08:00

9 lines
223 B
Python

"""Re-export of ``Auth0Provider`` from ``crewai_core.auth.providers.auth0``."""
from __future__ import annotations
from crewai_core.auth.providers.auth0 import Auth0Provider as Auth0Provider
__all__ = ["Auth0Provider"]