first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package wxcore
|
||||
|
||||
// WXLongRequest 微信长链接请求
|
||||
type WXLongRequest struct {
|
||||
OpCode uint32
|
||||
Data []byte
|
||||
}
|
||||
|
||||
// GetOpcode 获取Opcode
|
||||
func (wxlq *WXLongRequest) GetOpcode() uint32 {
|
||||
return wxlq.OpCode
|
||||
}
|
||||
|
||||
// GetData 获取数据
|
||||
func (wxlq *WXLongRequest) GetData() []byte {
|
||||
return wxlq.Data
|
||||
}
|
||||
Reference in New Issue
Block a user