11 lines
183 B
Python
11 lines
183 B
Python
from typing import TypedDict
|
|
|
|
class Msg(TypedDict):
|
|
message: str
|
|
tag: str
|
|
|
|
class JsonResponBase(TypedDict):
|
|
status: int
|
|
|
|
class JsonResponMsg(JsonResponBase):
|
|
body: Msg |