userver: samples/grpc_service/proto/samples/greeter.proto
⚠️ This is the documentation for an old userver version. Click here to switch to the latest version.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
samples/grpc_service/proto/samples/greeter.proto
syntax = "proto3";
package samples.api;
service GreeterService {
rpc SayHello(GreetingRequest) returns(GreetingResponse) {}
}
message GreetingRequest {
string name = 1;
}
message GreetingResponse {
string greeting = 1;
}