Files
demo-fastapi/app/response.py
2024-02-15 17:46:57 +08:00

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