6 lines
200 B
Python

# Re-export routers for API endpoints
from app.api.endpoints.todo import router as todo_router
from app.api.endpoints.health import router as health_router
__all__ = ["todo_router", "health_router"]