10 lines
122 B
Python
10 lines
122 B
Python
from typing import Any
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Msg(BaseModel):
|
|
code: int
|
|
msg: str
|
|
detail: Any
|