todo-app / app /api /__init__.py
Claude
fix dashboard final issue
87827b2
Raw
History Blame Contribute Delete
411 Bytes
"""
Task: T019
Spec: 002-authentication
API routers package.
Organizes all API route handlers.
"""
# Import routers here as they are created
from .auth import router as auth_router
# Example: from .tasks import router as tasks_router
__all__ = [
# API routers
"auth_router",
# "dashboard_router", # Now imported directly in main.py
# "tasks_router", # To be added later
]