Files
thisORthat/app/schemas/api_schemas.py
T
IgorVolochay 51cc2eb2b2 Create add_user rout
And fix some bullshit
2025-02-17 14:22:49 +03:00

9 lines
126 B
Python

import typing
from pydantic import BaseModel
class BaseResponse(BaseModel):
result: typing.Any
error: bool = False