8 lines
205 B
Python
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)
|
|
|
|
|