any-sync/syncproto/proto/commands.proto
Sergey Cherepanov cbfaf7fd91
drpc experiment
2022-07-14 16:59:01 +03:00

14 lines
220 B
Protocol Buffer

syntax = "proto3";
package anytype;
option go_package = "/syncproto";
message Ping {
message Request {
int64 seq = 1;
}
message Response {
int64 seq = 1;
int64 timestamp = 2;
}
}