Files
aperture/proxy/testdata/hello.proto
2021-05-11 13:25:25 +02:00

18 lines
297 B
Protocol Buffer

syntax = "proto3";
package proxy_test;
service Greeter {
rpc SayHello (HelloRequest) returns (HelloReply);
rpc SayHelloNoAuth (HelloRequest) returns (HelloReply);
}
message HelloRequest {
string name = 1;
bool return_error = 2;
}
message HelloReply {
string message = 1;
}