17 lines
395 B
Protocol Buffer
17 lines
395 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package arbiter;
|
|
|
|
import "client.proto";
|
|
import "operator.proto";
|
|
|
|
message ServerInfo {
|
|
string version = 1;
|
|
bytes cert_public_key = 2;
|
|
}
|
|
|
|
service ArbiterService {
|
|
rpc Client(stream arbiter.client.ClientRequest) returns (stream arbiter.client.ClientResponse);
|
|
rpc Operator(stream arbiter.operator.OperatorRequest) returns (stream arbiter.operator.OperatorResponse);
|
|
}
|