summaryrefslogtreecommitdiff
path: root/tests/plugins/grpc/testdata/simple/simple.proto
blob: aca3c1d91050dad11d090f0096b4a92cd1013160 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
syntax = "proto3";

package testSimple;

service SimpleService {
    rpc SimpleMethod (SimpleMessage) returns (SimpleMessage) {
    }
}

message SimpleMessage {
    int32 id = 1;
    string name = 2;
}