-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from code0-tech/feat/add-missing-action-messanges
Added Missing Aquila Services
- Loading branch information
Showing
4 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
syntax = "proto3"; | ||
|
||
option ruby_package = "Tucana::Aquila"; | ||
|
||
package aquila; | ||
|
||
message ActionCallRequest { | ||
string identifier = 1; | ||
repeated string parameters = 2; | ||
} | ||
|
||
message ActionCallResponse { | ||
string execution_identifier = 1; | ||
} | ||
|
||
message ActionResult { | ||
repeated string result = 1; | ||
} | ||
|
||
message ActionResultRequest { | ||
string execution_identifier = 1; | ||
} | ||
|
||
message ActionResultResponse { | ||
optional ActionResult action_result = 1; | ||
} | ||
|
||
service ActionCallService { | ||
rpc Call (ActionCallRequest) returns (ActionCallResponse); | ||
} | ||
|
||
service ActionResultService { | ||
rpc GetResult (ActionResultRequest) returns (ActionResultResponse); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters