mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
20 lines
259 B
Protocol Buffer
20 lines
259 B
Protocol Buffer
|
// -*- c-basic-offset: 4; indent-tabs-mode: nil -*-
|
||
|
// ex: ts=4 sw=4 et
|
||
|
|
||
|
package test;
|
||
|
|
||
|
service test
|
||
|
{
|
||
|
rpc testRpc(RPC_INPUT) returns (RPC_OUTPUT);
|
||
|
}
|
||
|
|
||
|
message RPC_INPUT
|
||
|
{
|
||
|
optional string str = 1;
|
||
|
}
|
||
|
|
||
|
message RPC_OUTPUT
|
||
|
{
|
||
|
optional string str = 1;
|
||
|
}
|