slask
Some checks failed
Build and Publish / BuildAndDeployAmd64 (push) Successful in 38s
Build and Publish / BuildAndDeployArm64 (push) Has been cancelled

This commit is contained in:
matst80
2025-12-02 09:04:42 +01:00
parent 060b3dfbf0
commit ee1b96fece
6 changed files with 254 additions and 76 deletions

View File

@@ -73,6 +73,14 @@ message ApplyRequest {
repeated google.protobuf.Any messages = 2;
}
message GetRequest {
uint64 id = 1;
}
message GetReply {
google.protobuf.Any grain = 1;
}
message ApplyResult {
bool accepted = 1;
}
@@ -99,6 +107,7 @@ service ControlPlane {
// Closing announces graceful shutdown so peers can proactively adjust.
rpc Closing(ClosingNotice) returns (OwnerChangeAck);
rpc Get(GetRequest) returns (GetReply);
}
// -----------------------------------------------------------------------------