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