
- 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
9 lines
454 B
Python
9 lines
454 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.endpoints import anime, genres, health, characters
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(health.router, prefix="/health", tags=["health"])
|
|
api_router.include_router(anime.router, prefix="/api/v1/anime", tags=["anime"])
|
|
api_router.include_router(genres.router, prefix="/api/v1/genres", tags=["genres"])
|
|
api_router.include_router(characters.router, prefix="/api/v1/characters", tags=["characters"]) |