1
0
Fork 0
TakwayPlatform/app/schemas/base_schema.py

6 lines
110 B
Python
Raw Normal View History

2024-05-01 17:18:30 +08:00
from pydantic import BaseModel
class BaseResponse(BaseModel):
status: str
message: str
data: dict