go.uber.org/yarpc@v1.72.1/encoding/protobuf/internal/testpb/test.proto (about)

     1  syntax = "proto3";
     2  
     3  package uber.yarpc.encoding.protobuf;
     4  
     5  option go_package = "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  }