mirror of
https://github.com/zrepl/zrepl.git
synced 2025-04-30 22:34:38 +02:00
17 lines
232 B
Protocol Buffer
17 lines
232 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = ".;pdu";
|
|
|
|
package pdu;
|
|
|
|
service Greeter {
|
|
rpc Greet(GreetRequest) returns (GreetResponse) {}
|
|
}
|
|
|
|
message GreetRequest {
|
|
string name = 1;
|
|
}
|
|
|
|
message GreetResponse {
|
|
string msg = 1;
|
|
}
|