From d41ea24c669fbbbfdb1d8a516b1fa431de5736f3 Mon Sep 17 00:00:00 2001 From: raphael-goetz Date: Thu, 21 Nov 2024 21:34:57 +0100 Subject: [PATCH] feat: added missing action service --- proto/aquila/transfer.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/proto/aquila/transfer.proto b/proto/aquila/transfer.proto index 0c8a899..8e7eb1a 100644 --- a/proto/aquila/transfer.proto +++ b/proto/aquila/transfer.proto @@ -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); } \ No newline at end of file