🎉
This commit is contained in:
26
request.go
Normal file
26
request.go
Normal 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"`
|
||||
}
|
||||
Reference in New Issue
Block a user