
- Added environment variable support via .env file - Updated API routes with versioning prefix - Improved documentation in README - Enhanced SQLite database path configuration generated with BackendIM... (backend.im)
7 lines
197 B
Python
7 lines
197 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import todos
|
|
from app.core.config import settings
|
|
|
|
router = APIRouter()
|
|
router.include_router(todos.router, prefix="/todos", tags=["todos"]) |