mirror of
https://github.com/correl/rebar.git
synced 2025-03-30 01:04:01 -09:00
exercises rebar/gpb integration The bulk of these tests are written by Luis Rascão, hence he is the author of this commit. As the committer, I have cherry-picked his two commits 4c87bcd and ebb8182, from the feature/support_gpb_protobuf branch in the git://github.com/lrascao/rebar repo, and have slightly adapted it to fit this pluggable-proto-compilers-gpb branch. Update the THANKS file
19 lines
266 B
Protocol Buffer
19 lines
266 B
Protocol Buffer
// -*- c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
// ex: ts=4 sw=4 et
|
|
|
|
package test4;
|
|
|
|
service test4
|
|
{
|
|
rpc testRpc4(RPC_INPUT4) returns (RPC_OUTPUT4);
|
|
}
|
|
|
|
message RPC_INPUT4
|
|
{
|
|
optional string str = 1;
|
|
}
|
|
|
|
message RPC_OUTPUT4
|
|
{
|
|
optional string str = 1;
|
|
}
|