github.com/lheiskan/zebrapack@v4.1.1-0.20181107023619-e955d028f9bf+incompatible/msgp/defs_test.go (about)

     1  package msgp_test
     2  
     3  //go:generate zebrapack -msgp -o=defgen_test.go -tests=false
     4  
     5  type Blobs []Blob
     6  
     7  type Blob struct {
     8  	Name   string  `msg:"name"`
     9  	Float  float64 `msg:"float"`
    10  	Bytes  []byte  `msg:"bytes"`
    11  	Amount int64   `msg:"amount"`
    12  }