Create add_user rout

And fix some bullshit
This commit is contained in:
IgorVolochay
2025-02-17 14:22:49 +03:00
parent 388c89cc40
commit 51cc2eb2b2
4 changed files with 33 additions and 22 deletions
+8
View File
@@ -0,0 +1,8 @@
import typing
from pydantic import BaseModel
class BaseResponse(BaseModel):
result: typing.Any
error: bool = False