from ..core.routes import get_crud_router from .models import Entity from .schemas import EntityCreate, EntityRead, EntityUpdate router = get_crud_router(Entity, EntityCreate, EntityRead, EntityUpdate)