forked from TrueCloudLab/frostfs-node
dadfd90dcd
Initial public review release v0.10.0
18 lines
334 B
Protocol Buffer
18 lines
334 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "github.com/nspcc-dev/neofs-node/lib/peers";
|
|
|
|
package peers;
|
|
|
|
// The Greater service definition.
|
|
service Greeter {
|
|
rpc Hello(HelloRequest) returns (HelloResponse);
|
|
}
|
|
|
|
// Request message example
|
|
message HelloRequest {
|
|
string name = 1;
|
|
}
|
|
|
|
message HelloResponse {
|
|
string message = 1;
|
|
}
|