
- Set up project structure - Created Task model with SQLAlchemy - Implemented SQLite database connection - Created Alembic migrations - Added Task CRUD endpoints - Added health endpoint - Updated README with project details generated with BackendIM... (backend.im)
6 lines
163 B
Python
6 lines
163 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.routers import tasks
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"]) |