kasbot/Proto/status.proto

19 lines
365 B
Protocol Buffer

syntax = "proto3";
package status;
// The greeting service definition.
service StatusRequester {
// 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;
}