mirror of
https://github.com/kevin-DL/full-stack-fastapi-postgresql.git
synced 2026-01-12 18:25:15 +00:00
11 lines
290 B
Python
11 lines
290 B
Python
from .crud_item import item
|
|
from .crud_user import user
|
|
|
|
# For a new basic set of CRUD operations you could just do
|
|
|
|
# from .base import CRUDBase
|
|
# from app.models.item import Item
|
|
# from app.schemas.item import ItemCreate, ItemUpdate
|
|
|
|
# item = CRUDBase[Item, ItemCreate, ItemUpdate](Item)
|