moved models to separate folder

This commit is contained in:
Josh Burman
2021-09-04 23:50:22 -04:00
parent 1b7c56ac3e
commit c4fdd68af2
9 changed files with 84 additions and 58 deletions
+8
View File
@@ -0,0 +1,8 @@
from pydantic import BaseModel
from typing import List
from models.metadata import MetaData
class Item(BaseModel):
id: int
metadata: List[MetaData]