Files
arbiter/protobufs/arbiter.proto
Skipper a1c3ffd2d1
Some checks failed
ci/woodpecker/push/server-audit Pipeline was successful
ci/woodpecker/push/server-vet Pipeline failed
ci/woodpecker/push/server-lint Pipeline failed
ci/woodpecker/push/server-test Pipeline was successful
refactor: rename to to better reflect meaning
2026-04-19 13:41:50 +02:00

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);
}