8 lines
151 B
Python
8 lines
151 B
Python
|
|
from typing import Any
|
||
|
|
|
||
|
|
from pydantic import BaseModel
|
||
|
|
|
||
|
|
class Response(BaseModel):
|
||
|
|
code: int
|
||
|
|
msg: str
|
||
|
|
payload: dict[Any, Any] | None = None
|