first commit

This commit is contained in:
2026-02-17 13:06:23 +08:00
commit 7cbd3d061d
349 changed files with 126558 additions and 0 deletions
+17
View File
@@ -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
}