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