MCP_todo / api /routes /__init__.py
MAWB's picture
Update api/routes/__init__.py
02569b7 verified
raw
history blame contribute delete
238 Bytes
"""Routes package."""
from api.routes.tasks import router as tasks_router
from api.routes.health import router as health_router
from api.routes.chat import router as chat_router
__all__ = ["tasks_router", "health_router", "chat_router"]