Files
backup-tool/backend/app/routers/settings.py
T
alex 878e303cc6 feat: setup FastAPI main app with routers and test fixtures
- Main FastAPI app with all routers included
- CORS middleware for frontend
- Test fixtures with in-memory SQLite database
- Placeholder routers for future tasks
2026-05-11 21:22:55 +02:00

5 lines
130 B
Python

from fastapi import APIRouter
router = APIRouter(prefix="/api/settings", tags=["settings"])
# Will be implemented in later tasks