record.proto 411 B

1234567891011121314
  1. package walpb;
  2. import "code.google.com/p/gogoprotobuf/gogoproto/gogo.proto";
  3. option (gogoproto.marshaler_all) = true;
  4. option (gogoproto.sizer_all) = true;
  5. option (gogoproto.unmarshaler_all) = true;
  6. option (gogoproto.goproto_getters_all) = false;
  7. message Record {
  8. required int64 type = 1 [(gogoproto.nullable) = false];
  9. required uint32 crc = 2 [(gogoproto.nullable) = false];
  10. optional bytes data = 3;
  11. }