add callback

This commit is contained in:
wangchuxiao
2022-03-03 14:18:28 +08:00
parent 60e29cc894
commit f1c11ac114
3 changed files with 13 additions and 12 deletions
+3 -3
View File
@@ -5,7 +5,7 @@ type msg struct {
ClientMsgID string `json:"clientMsgID"`
ServerMsgID string `json:"serverMsgId"`
CreateTime int64 `json:"createTime"`
Content []byte `json:"content"`
Content string `json:"content"`
}
type singleMsg struct {
@@ -58,10 +58,10 @@ type CallbackAfterSendGroupMsgResp struct {
type CallbackWordFilterReq struct {
CommonCallbackReq
Content []byte `json:"content"`
Content string `json:"content"`
}
type CallbackWordFilterResp struct {
CommonCallbackResp
Content []byte `json:"content"`
Content string `json:"content"`
}