Files
comm-framework/ProtoBufModule/target/classes/CrossProto/cross_link.proto
T

18 lines
278 B
Protocol Buffer
Raw Normal View History

2026-05-07 15:54:43 +08:00
syntax = "proto3";
package demo.crosslink;
option java_package = "com.huangzj.cross.gen";
option java_multiple_files = true;
message CrossPing {
string trace = 1;
int32 nonce = 2;
}
message CrossPong {
string trace = 1;
int32 nonce = 2;
int64 cross_time_ms = 3;
}