
- Set up project structure with FastAPI - Implement SQLAlchemy models for User and Task - Create Alembic migrations - Implement authentication with JWT - Add CRUD operations for tasks - Add task filtering and prioritization - Configure health check endpoint - Update README with project documentation
9 lines
329 B
Python
9 lines
329 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.api_v1.endpoints import auth, tasks, users
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
|
|
api_router.include_router(users.router, prefix="/users", tags=["users"])
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"])
|