6 lines
232 B
Python
6 lines
232 B
Python
"""Import all agent modules to trigger @registry.register decorators."""
|
|
|
|
from app.agents import analytics_agent, calendar_agent, email_agent, task_agent
|
|
|
|
__all__ = ["analytics_agent", "calendar_agent", "email_agent", "task_agent"]
|