github.com/hellobchain/third_party@v0.0.0-20230331131523-deb0478a2e52/gin/testdata/protoexample/test.proto (about)

     1  package protoexample;
     2  
     3  enum FOO {X=17;};
     4  
     5  message Test {
     6     required string label = 1;
     7     optional int32 type = 2[default=77];
     8     repeated int64 reps = 3;
     9     optional group OptionalGroup = 4{
    10       required string RequiredField = 5;
    11     }
    12  }