Files
cht-lawfirm/back/app/entity/routes.py
2023-01-09 13:03:16 +01:00

8 lines
205 B
Python

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)