...

Text file src/github.com/gogo/protobuf/test/issue427/issue427.proto

Documentation: github.com/gogo/protobuf/test/issue427

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

View as plain text