jatin gyass
initial commit
2eef9ea
Raw
History Blame Contribute Delete
485 Bytes
"""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"]