6 lines
226 B
Python
6 lines
226 B
Python
"""Import all agent modules to trigger @registry.register decorators."""
|
|
|
|
from app.agents import timeline_agent, note_agent, project_agent, task_agent
|
|
|
|
__all__ = ["timeline_agent", "note_agent", "project_agent", "task_agent"]
|