This commit is contained in:
jxxghp
2023-06-06 07:15:17 +08:00
commit 4d06f86e62
217 changed files with 13959 additions and 0 deletions

8
app/schemas/response.py Normal file
View File

@ -0,0 +1,8 @@
from typing import Optional
from pydantic import BaseModel
class Response(BaseModel):
success: bool
message: Optional[str] = None