We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4df5e80 commit 22d6ed9Copy full SHA for 22d6ed9
aeon_internal.proto
@@ -0,0 +1,23 @@
1
+syntax = "proto3";
2
+
3
+import "aeon_error.proto";
4
+import "aeon_value.proto";
5
6
+package aeon;
7
8
+// Internal API to Aeon - a distributed database based on Tarantool.
9
+service InternalService {
10
+ // Get configurations of all instances.
11
+ rpc GetConfig(GetConfigRequest) returns (GetConfigResponse) {}
12
+}
13
14
+// Get configurations of all instances.
15
16
+message GetConfigRequest {}
17
18
+message GetConfigResponse {
19
+ // Error information. Set only on failure.
20
+ Error error = 1;
21
+ // Configurations of instances.
22
+ Value config = 2;
23
0 commit comments