summaryrefslogtreecommitdiff
path: root/inttest/proto_gpb/proto/test.proto
blob: 9b3cf59767e860d58fc991199ff185bf63092c4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// -*- 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;
}