zrepl/rpc/grpcclientidentity/example/grpcauth.proto

16 lines
203 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package pdu;
service Greeter {
rpc Greet(GreetRequest) returns (GreetResponse) {}
}
message GreetRequest {
string name = 1;
}
message GreetResponse {
string msg = 1;
}