
- Set up project structure and dependencies - Create database models for tasks and users with SQLAlchemy - Configure Alembic for database migrations - Implement authentication system with JWT tokens - Create CRUD API endpoints for tasks and users - Add health check endpoint - Update README with documentation
8 lines
324 B
Python
8 lines
324 B
Python
from fastapi import APIRouter
|
|
|
|
from app.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"]) |