This repository has been archived on 2026-07-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
college-work/Дипломная работа/app/schemas/api_schemas.py
T

13 lines
228 B
Python

from typing import Any
from pydantic import BaseModel
ALLOWED_MIME_TYPES = {"image/png", "image/jpeg"}
class AddPersonJSON(BaseModel):
username: str
class BaseResponse(BaseModel):
result: Any
error: bool = False