14 lines
220 B
Protocol Buffer
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;
|
|
}
|
|
} |