
- Add requirements.txt file to git - Add project files to git - Fix linting issues in task.py and env.py - Update SQLAlchemy queries to use 'not' instead of '== False' - Fix import ordering in env.py
11 lines
349 B
Python
11 lines
349 B
Python
from fastapi import APIRouter
|
|
|
|
from app.core.config import settings
|
|
|
|
api_router = APIRouter(prefix=settings.API_V1_STR)
|
|
|
|
# Import and include routers for different resources
|
|
# Example: from app.api.v1.endpoints import tasks
|
|
# api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"])
|
|
|
|
# We'll add the tasks router implementation later |