Files
arbiter/protobufs/arbiter.proto
2026-06-23 18:47:23 +00:00

17 lines
411 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);
}