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
132 B
Python
5 lines
132 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter(prefix="/api/dashboard", tags=["dashboard"])
|
|
# Will be implemented in later tasks
|