14 lines
184 B
Protocol Buffer
14 lines
184 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message GreetRequest {
|
|
string message = 1;
|
|
}
|
|
|
|
message GreetReply {
|
|
string message = 1;
|
|
}
|
|
|
|
service HelloService {
|
|
rpc greet(GreetRequest) returns (GreetReply);
|
|
}
|