micro/codec/proto/marshaler.go

20 lines
358 B
Go
Raw Normal View History

2019-01-10 12:42:02 +03:00
package proto
import (
"github.com/golang/protobuf/proto"
)
type Marshaler struct{}
func (Marshaler) Marshal(v interface{}) ([]byte, error) {
return proto.Marshal(v.(proto.Message))
}
func (Marshaler) Unmarshal(data []byte, v interface{}) error {
return proto.Unmarshal(data, v.(proto.Message))
}
func (Marshaler) String() string {
2019-01-10 12:42:02 +03:00
return "proto"
}