Skip to content

Commit bc5b0a8

Browse files
committed
proto: introduce aeon_internal.proto
This patch adds `aeon_internal.proto` which will be used to implement the internal RPC.
1 parent 4df5e80 commit bc5b0a8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

aeon_internal.proto

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)