CodeLiturgy.Dashboard/BlueWest.Api/Protos/greet.proto

22 lines
407 B
Protocol Buffer
Raw Normal View History

2022-09-19 05:50:15 +03:00
syntax = "proto3";
option csharp_namespace = "BlueWest.Streaming";
package greet;
// The greeting service definition.
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply);
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings.
message HelloReply {
string message = 1;
}