added token to request object, as well as created response object

This commit is contained in:
Josh Burman
2021-09-07 15:10:31 -04:00
parent c4fdd68af2
commit 8ac5d5efdb
5 changed files with 29 additions and 9 deletions

7
app/models/form.py Normal file
View File

@ -0,0 +1,7 @@
from pydantic import BaseModel
from typing import List
from models.item import Item
class Form(BaseModel):
items: List[Item]