Skip to content

Commit

Permalink
🎨初步可用
Browse files Browse the repository at this point in the history
  • Loading branch information
JustUndertaker committed Sep 25, 2022
1 parent 607f001 commit 9d70266
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ntchat_client/model.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import Any

from pydantic import BaseModel


Expand All @@ -6,9 +8,9 @@ class Response(BaseModel):

echo: str
"""echo值"""
status: int
"""状态码"""
status: str
"""状态值"""
msg: str
"""回复消息"""
data: dict
data: Any
"""返回数据"""

0 comments on commit 9d70266

Please sign in to comment.