Files
rustytorch/crates/specialized/rtx-platform/proto/federation.proto
T
2026-03-04 00:08:42 +00:00

16 lines
333 B
Protocol Buffer

syntax = "proto3";
package rtx.platform.federation;
service FederationService {
rpc CreateFederatedOperation(FederatedOperationRequest) returns (FederatedOperationResponse);
}
message FederatedOperationRequest {
string operation_id = 1;
string privacy_level = 2;
}
message FederatedOperationResponse {
bool success = 1;
}