Automated Action 55fa6c2bbd Create comprehensive FastAPI REST API service
- Set up FastAPI application with CORS support
- Implement SQLAlchemy models and database session management
- Create CRUD API endpoints for items management
- Configure Alembic for database migrations
- Add health check and service info endpoints
- Include comprehensive documentation and project structure
- Integrate Ruff for code quality and formatting
2025-06-19 04:39:38 +00:00

6 lines
155 B
Python

from fastapi import APIRouter
from app.api import items
api_router = APIRouter()
api_router.include_router(items.router, prefix="/items", tags=["items"])