github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/protobuf/encoding.proto (about) 1 syntax = 'proto3'; 2 3 option go_package = "github.com/hyperledger/burrow/encoding"; 4 5 import "gogoproto/gogo.proto"; 6 7 package encoding; 8 9 option (gogoproto.stable_marshaler_all) = true; 10 option (gogoproto.marshaler_all) = true; 11 option (gogoproto.unmarshaler_all) = true; 12 option (gogoproto.sizer_all) = true; 13 option (gogoproto.goproto_registration) = true; 14 option (gogoproto.messagename_all) = true; 15 16 // For testing 17 message TestMessage { 18 option (gogoproto.goproto_stringer) = false; 19 uint32 Type = 1; 20 uint64 Amount = 2; 21 }