This commit is contained in:
coward
2024-01-05 11:54:25 +08:00
commit 9680512f0a
8 changed files with 382 additions and 0 deletions

26
request.go Normal file
View File

@@ -0,0 +1,26 @@
package wx_helper_sdk
// SetHook
// @description: 设置回调
type SetHook struct {
Port string `json:"port"`
Ip string `json:"ip"`
Url string `json:"url"`
Timeout string `json:"timeout"`
EnableHttp string `json:"enableHttp"`
}
// SendAtText
// @description: 发送群里圈人文本信息
type SendAtText struct {
Wxids string `json:"wxids"`
ChatRoomId string `json:"chatRoomId"`
Msg string `json:"msg"`
}
// SendText
// @description: 发送文本信息(私聊)
type SendText struct {
Wxid string `json:"wxid"`
Msg string `json:"msg"`
}