mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
27 lines
437 B
Protocol Buffer
27 lines
437 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xsvm;
|
|
|
|
option go_package = "github.com/luxfi/node/connectproto/pb/xsvm";
|
|
|
|
service Ping {
|
|
rpc Ping(PingRequest) returns (PingReply);
|
|
rpc StreamPing(stream StreamPingRequest) returns (stream StreamPingReply);
|
|
}
|
|
|
|
message PingRequest {
|
|
string message = 1;
|
|
}
|
|
|
|
message PingReply {
|
|
string message = 1;
|
|
}
|
|
|
|
message StreamPingRequest {
|
|
string message = 1;
|
|
}
|
|
|
|
message StreamPingReply {
|
|
string message = 1;
|
|
}
|