This commit is contained in:
2021-11-10 13:13:33 +03:00
commit 4c7af00ac3
22 changed files with 1663 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from datetime import datetime
from pydantic import BaseModel
class UploadedFile(BaseModel):
id: int
backend: str
data: dict
upload_time: datetime