This commit is contained in:
Auto
2025-12-30 11:56:39 +02:00
parent dd7c1ddd82
commit a2efec159d
40 changed files with 9112 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
"""
API Routers
===========
FastAPI routers for different API endpoints.
"""
from .projects import router as projects_router
from .features import router as features_router
from .agent import router as agent_router
__all__ = ["projects_router", "features_router", "agent_router"]