Files
comm-framework/ProtoBufModule/target/classes/serverProto/echo.proto
T
2026-05-07 15:54:43 +08:00

17 lines
281 B
Protocol Buffer

syntax = "proto3";
package demo.comm;
option java_package = "com.huangzj.comm.gen";
option java_outer_classname = "EchoProto";
option java_multiple_files = true;
message EchoRequest {
string text = 1;
}
message EchoResponse {
string text = 1;
int64 server_time_ms = 2;
}