github.com/chrislusf/greenpack@v3.7.1-0.20170911073826-ad5bd10b7c47+incompatible/msgp/defs_test.go (about) 1 package msgp_test 2 3 //go:generate greenpack -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 }