frostfs-node/pkg/network/peers/peers_test.proto

19 lines
342 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
2020-07-24 13:54:03 +00:00
option go_package = "github.com/nspcc-dev/neofs-node/pkg/network/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;
}