
- 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
5 lines
154 B
Python
5 lines
154 B
Python
# Import all endpoints modules here
|
|
from app.api.v1.endpoints import author, genre, manga, publisher
|
|
|
|
__all__ = ["author", "genre", "manga", "publisher"]
|