
- 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
6 lines
223 B
Python
6 lines
223 B
Python
# Import all the models for Alembic to detect
|
|
from app.db.base_class import Base # noqa
|
|
|
|
# Import all models here for Alembic to detect them
|
|
from app.models.manga import Author, Genre, Manga, MangaGenre, Publisher # noqa
|