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

     1  syntax = "proto3";
     2  package mainpkg;
     3  
     4  message ImportedMessage {
     5      int32 a_int32       = 1;
     6      int64 a_int64       = 2;
     7      uint32 a_uint32     = 3;
     8      uint64 a_uint64     = 4;
     9      sint32 a_sint32     = 5;
    10      sint64 a_sint64     = 6;
    11      fixed32 a_fixed32   = 7;
    12      fixed64 a_fixed64   = 8;
    13      sfixed32 a_sfixed32 = 9;
    14      sfixed64 a_sfixed64 = 10;
    15      bool a_bool         = 11;
    16      string a_string     = 12;
    17      bytes a_bytes       = 13;
    18      double a_double     = 14;
    19      float a_float       = 15;
    20  }