Automated Action a9210ca8ed Create manga inventory API with FastAPI and SQLite
- Implemented CRUD operations for manga, authors, publishers, and genres
- Added search and filtering functionality
- Set up SQLAlchemy ORM with SQLite database
- Configured Alembic for database migrations
- Implemented logging with Loguru
- Added comprehensive API documentation
- Set up error handling and validation
- Added ruff for linting and formatting
2025-05-30 12:29:35 +00:00

12 lines
480 B
Python

from fastapi import APIRouter
from app.api.v1 import endpoints
api_router = APIRouter()
# Include all endpoint routers here
api_router.include_router(endpoints.manga.router, prefix="/manga", tags=["manga"])
api_router.include_router(endpoints.author.router, prefix="/authors", tags=["authors"])
api_router.include_router(endpoints.publisher.router, prefix="/publishers", tags=["publishers"])
api_router.include_router(endpoints.genre.router, prefix="/genres", tags=["genres"])