go.uber.org/yarpc@v1.72.1/encoding/protobuf/internal/testpb/v2/test.proto (about) 1 syntax = "proto3"; 2 3 package uber.yarpc.encoding.protobuf; 4 5 option go_package = "encoding/protobuf/internal/testpb/v2;testpb"; 6 7 message TestMessage { 8 string value = 1; 9 } 10 11 service Test { 12 rpc Unary(TestMessage) returns (TestMessage); 13 rpc Duplex(stream TestMessage) returns (stream TestMessage); 14 }