Skip to content

Commit

Permalink
fix: adjusted communication to execution
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael-goetz committed Nov 21, 2024
1 parent 9f47433 commit 9d184e4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions proto/aquila/action_execute.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,13 @@ message ActionResult {
repeated string result = 1;
}

message ActionResultRequest {}

message ActionResultRequest {
message ActionResultResponse {
string execution_identifier = 1;
optional ActionResult action_result = 2;
}

message ActionResultResponse {
bool successful = 1;
}

service ActionCallService {
rpc Call (ActionCallRequest) returns (ActionCallResponse);
}
Expand Down

0 comments on commit 9d184e4

Please sign in to comment.