Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-29 00:39:14 -08:00
parent bc3d698539
commit faaeb3a472
74 changed files with 496 additions and 1985 deletions

View File

@ -1,10 +1,12 @@
from pydantic import Base64Bytes, BaseModel
from pydantic import BaseModel
from .base64data import Base64Data
class ExportFile(BaseModel):
"""A file to be exported to the client."""
contents: Base64Bytes
contents: Base64Data
name: str