Files
tessera/services/data_service/internal/domain/message.go

15 lines
212 B
Go

package domain
type Encoding string
const (
EncodingJSON Encoding = "json"
EncodingProtobuf Encoding = "protobuf"
)
type Message struct {
Identifier Identifier
Payload []byte
Encoding Encoding
}