mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-30 08:06:40 +02:00
38 lines
568 B
Go
38 lines
568 B
Go
package proto
|
|
|
|
type Message struct {
|
|
Data []byte
|
|
}
|
|
|
|
func (m *Message) MarshalJSON() ([]byte, error) {
|
|
return m.Data, nil
|
|
}
|
|
|
|
func (m *Message) UnmarshalJSON(data []byte) error {
|
|
m.Data = data
|
|
return nil
|
|
}
|
|
|
|
func (m *Message) ProtoMessage() {}
|
|
|
|
func (m *Message) Reset() {
|
|
*m = Message{}
|
|
}
|
|
|
|
func (m *Message) String() string {
|
|
return string(m.Data)
|
|
}
|
|
|
|
func (m *Message) Marshal() ([]byte, error) {
|
|
return m.Data, nil
|
|
}
|
|
|
|
func (m *Message) Unmarshal(data []byte) error {
|
|
m.Data = data
|
|
return nil
|
|
}
|
|
|
|
func NewMessage(data []byte) *Message {
|
|
return &Message{data}
|
|
}
|