Skip to content

Commit

Permalink
feat: added missing action service
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael-goetz committed Nov 21, 2024
1 parent 4698148 commit d41ea24
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions proto/aquila/transfer.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,17 @@ message InformationResponse {
bool success = 1;
}

message ActionExecuteRequest {
string execution_identifier = 1;
repeated string parameters = 2;
}

message ActionExecuteResponse {
string execution_identifier = 1;
repeated string result = 2;
}

service ActionTransferService {
rpc Transfer (stream InformationRequest) returns (InformationResponse);
rpc Execute (stream ActionExecuteRequest) returns (stream ActionExecuteResponse);
}

0 comments on commit d41ea24

Please sign in to comment.