1
0
mirror of https://github.com/Mrs4s/MiraiGo.git synced 2025-05-04 11:07:40 +08:00
MiraiGo/protocol/tlv/t142.go
2021-03-20 21:21:40 +08:00

14 lines
301 B
Go

package tlv
import "github.com/Mrs4s/MiraiGo/binary"
func T142(apkId string) []byte {
return binary.NewWriterF(func(w *binary.Writer) {
w.WriteUInt16(0x142)
w.WriteBytesShort(binary.NewWriterF(func(w *binary.Writer) {
w.WriteUInt16(0)
w.WriteTlvLimitedSize([]byte(apkId), 32)
}))
})
}