github.com/gogo/protobuf@v1.3.2/test/issue427/issue427.proto (about)

     1  syntax = "proto3";
     2  
     3  package issue427;
     4  
     5  import "github.com/gogo/protobuf/gogoproto/gogo.proto";
     6  
     7  option (gogoproto.testgen_all)  = true;
     8  option (gogoproto.populate_all) = true;
     9  option (gogoproto.sizer_all)    = true;
    10  option (gogoproto.equal_all)    = true;
    11  
    12  message Foo {
    13      string foo = 1;
    14  }
    15  
    16  service Bar {
    17      rpc GetBar (Foo) returns (Foo);
    18  }