mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-25 09:54:47 +01:00
16 lines
203 B
Protocol Buffer
16 lines
203 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package pdu;
|
||
|
|
||
|
|
||
|
service Greeter {
|
||
|
rpc Greet(GreetRequest) returns (GreetResponse) {}
|
||
|
}
|
||
|
|
||
|
message GreetRequest {
|
||
|
string name = 1;
|
||
|
}
|
||
|
|
||
|
message GreetResponse {
|
||
|
string msg = 1;
|
||
|
}
|