any-sync/syncproto/proto/commands.proto
2022-07-14 00:22:28 +03:00

14 lines
219 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;
}
}