hash-of-wisdom/internal/protocol/types.go
2025-08-23 18:52:43 +07:00

11 lines
199 B
Go

package protocol
import "io"
// Message represents a protocol message with type and payload stream
type Message struct {
Type MessageType
PayloadLength uint32
PayloadStream io.Reader
}