Files
aperture/proxy/testdata/hello.proto
2019-12-04 10:45:08 +01:00

17 lines
274 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;
}
message HelloReply {
string message = 1;
}