summaryrefslogtreecommitdiff
path: root/tests/plugins/grpc/configs/external.proto
blob: 2bbe806e45b77fc162302a02df65f19715c3e715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
syntax = "proto3";
package tests;

service External {
    rpc Echo (Ping) returns (Pong) {
    }

    rpc Empty (EmptyMessage) returns (EmptyMessage) {

    }
}

message Ping {
    int64 value = 1;
}

message Pong {
    int64 value = 1;
}