878e303cc6
- Main FastAPI app with all routers included - CORS middleware for frontend - Test fixtures with in-memory SQLite database - Placeholder routers for future tasks
5 lines
130 B
Python
5 lines
130 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter(prefix="/api/settings", tags=["settings"])
|
|
# Will be implemented in later tasks
|