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