mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-01-30 14:22:04 +00:00
14 lines
365 B
Python
14 lines
365 B
Python
"""
|
|
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
|
|
from .spec_creation import router as spec_creation_router
|
|
|
|
__all__ = ["projects_router", "features_router", "agent_router", "spec_creation_router"]
|