You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
611 B

  1. syntax = "proto3";
  2. package tendermint.libs.kv;
  3. option go_package = "github.com/tendermint/tendermint/libs/kv";
  4. import "third_party/proto/gogoproto/gogo.proto";
  5. option (gogoproto.marshaler_all) = true;
  6. option (gogoproto.unmarshaler_all) = true;
  7. option (gogoproto.sizer_all) = true;
  8. option (gogoproto.goproto_registration) = true;
  9. // Generate tests
  10. option (gogoproto.populate_all) = true;
  11. option (gogoproto.equal_all) = true;
  12. option (gogoproto.testgen_all) = true;
  13. //----------------------------------------
  14. // Abstract types
  15. message Pair {
  16. bytes key = 1;
  17. bytes value = 2;
  18. }