moved the kafka-go project to this repository

This commit is contained in:
Timmelmann
2026-08-08 14:26:06 +02:00
commit 58710c23b2
11 changed files with 225 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package response
import "encoding/binary"
type V0Header struct {
Correlation_id uint32
}
func NewHeader(correlation_id uint32) *V0Header {
return &V0Header{
Correlation_id: correlation_id,
}
}
func (h *V0Header) ToBytes() []byte {
buf := make([]byte, 4)
binary.BigEndian.PutUint32(buf, uint32(h.Correlation_id))
return buf
}