github.com/m3db/m3@v1.5.0/src/dbnode/namespace/testdata/deduppkg/imported.proto (about)

     1  syntax = "proto3";
     2  package deduppkg;
     3  
     4  import "otherpkg/otherpkg.proto";
     5  import "deduppkg/indirect.proto";
     6  
     7  message ImportedMessage {
     8      int32 a_int32       = 1;
     9      int64 a_int64       = 2;
    10      uint32 a_uint32     = 3;
    11      uint64 a_uint64     = 4;
    12      sint32 a_sint32     = 5;
    13      sint64 a_sint64     = 6;
    14      fixed32 a_fixed32   = 7;
    15      fixed64 a_fixed64   = 8;
    16      sfixed32 a_sfixed32 = 9;
    17      sfixed64 a_sfixed64 = 10;
    18      bool a_bool         = 11;
    19      string a_string     = 12;
    20      bytes a_bytes       = 13;
    21      double a_double     = 14;
    22      float a_float       = 15;
    23      otherpkg.MessageFromOtherPkg a_message_from_other_pkg  = 16;
    24      IndirectMessage an_indirect_message                    = 17;
    25  }