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 bc5b0a8Copy full SHA for bc5b0a8
aeon_internal.proto
@@ -0,0 +1,15 @@
1
+syntax = "proto3";
2
+
3
+package aeon;
4
5
+// Internal API to Aeon - a distributed database based on Tarantool.
6
+service InternalService {
7
+ // Pings the server.
8
+ rpc InternalPing(InternalPingRequest) returns (InternalPingResponse) {}
9
+}
10
11
+// Pings the server.
12
13
+message InternalPingRequest {}
14
15
+message InternalPingResponse {}
0 commit comments