Automated Action 9623558845 Add character management system
- Enhance character model with additional fields
- Create relationship between anime and characters
- Implement character search functionality
- Create Alembic migration for character table
- Add sample character data for seeding
- Update README with character endpoint information
2025-05-17 22:02:13 +00:00

5 lines
195 B
Python

from app.crud.crud_anime import anime as anime
from app.crud.crud_genre import genre as genre
from app.crud.crud_character import character as character
__all__ = ["anime", "genre", "character"]