
- 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
5 lines
195 B
Python
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"] |