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.

17 lines
351 B

  1. syntax = "proto3";
  2. package common;
  3. //----------------------------------------
  4. // Abstract types
  5. // Define these here for compatibility but use tmlibs/common.KVPair.
  6. message KVPair {
  7. bytes key = 1;
  8. bytes value = 2;
  9. }
  10. // Define these here for compatibility but use tmlibs/common.KI64Pair.
  11. message KI64Pair {
  12. bytes key = 1;
  13. int64 value = 2;
  14. }