mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-06 17:52:35 +00:00
Copy all CLI source modules from lib/crewai/src/crewai/cli/ to the new lib/cli/src/crewai_cli/ package, updating internal imports from crewai.cli.* to crewai_cli.* throughout. Includes: authentication, deploy, enterprise, organization, settings, tools, triggers, templates, and all top-level CLI command modules. Also excludes lib/cli/ from pre-commit mypy checks to match existing behavior (original CLI code has the same type gaps).
7 lines
132 B
Python
7 lines
132 B
Python
"""Triggers command module for CrewAI CLI."""
|
|
|
|
from crewai_cli.triggers.main import TriggersCommand
|
|
|
|
|
|
__all__ = ["TriggersCommand"]
|