lbryschema.go/claim/pretty.go

11 lines
201 B
Go
Raw Normal View History

2017-09-12 18:02:30 +02:00
package claim
import (
"github.com/golang/protobuf/jsonpb"
)
func (claim *Claim) RenderJSON() (string, error) {
marshaler := jsonpb.Marshaler{}
return marshaler.MarshalToString(&claim.protobuf)
}