repositorypackage
0.0.0-20210811021341-3670f0aa02d0
Repository: https://github.com/streamingfast/jsonpb.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
# README
jsonpb
Library - StreamingFast fork
This is simply a copy of Google Protocol Buffer jsonpb
package
where []byte
types by default outputs to hexadecimal encoding instead
of base64 encoding.
Usage
package main
func main() {
block := &pbdeos.Block{}
blockJSON := jsonpb.MarshalToString(block)
}