xbackend/schemas/msg.py
2021-05-06 00:18:06 +08:00

10 lines
122 B
Python

from typing import Any
from pydantic import BaseModel
class Msg(BaseModel):
code: int
msg: str
detail: Any