Finn Christiansen
d8607212da
Some checks failed
Python formatting PEP8 / Python-PEP8 (push) Failing after 18s
10 lines
194 B
Python
10 lines
194 B
Python
from models import Item
|
|
from schemas.item import ItemCreate, ItemUpdate
|
|
from crud.base import CRUDBase
|
|
|
|
|
|
class CRUDItem(CRUDBase[Item, ItemCreate, ItemUpdate]):
|
|
pass
|
|
|
|
|
|
item = CRUDItem(Item)
|