File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,7 +58,8 @@ services that Sagittarius must implement as a server.
5858│ ├── action - Action service (emits events, and handles executions)
5959│ ├── module - Module service for Taurus to send over datatypes, functions and flow types
6060│ ├── runtime_status - Service for runtime status (handles information about Draco and Taurus)
61- │ └── runtime_usage - Service for runtime usage (handles execution time of a flow)
61+ │ ├── runtime_usage - Service for runtime usage (handles execution time of a flow)
62+ │ └── execution - Service for updating completed executions
6263├── sagittarius
6364│ ├── flow - Flow service (handles flow updates)
6465│ ├── module - Module service to receive datatypes, functions and flow types from aquila
Original file line number Diff line number Diff line change 1+ syntax = "proto3" ;
2+
3+ option ruby_package = "Tucana::Aquila" ;
4+
5+ package aquila ;
6+
7+ import "shared.execution_result.proto" ;
8+
9+ message ExecutionRequest {
10+ shared.ExecutionResult execution_result = 1 ;
11+ }
12+
13+ message ExecutionResponse {
14+ bool success = 1 ;
15+ }
16+
17+ service ExecutionService {
18+ rpc Update (ExecutionRequest ) returns (ExecutionResponse ) {}
19+ }
You can’t perform that action at this time.
0 commit comments