Spaces:
Sleeping
Sleeping
File size: 485 Bytes
2eef9ea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """API Routes for Multi-Agent System."""
from fastapi import APIRouter
from .health import router as health_router
from .tasks import router as tasks_router
from .workflows import router as workflows_router
router = APIRouter()
# Include all route modules
router.include_router(health_router, tags=["health"])
router.include_router(tasks_router, prefix="/tasks", tags=["tasks"])
router.include_router(workflows_router, prefix="/workflows", tags=["workflows"])
__all__ = ["router"]
|