Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
9 lines
126 B
9 lines
126 B
1 year ago
|
syntax = "proto3";
|
||
|
|
||
|
package debug;
|
||
|
|
||
|
message DebugMsg {
|
||
|
int32 id = 1;
|
||
|
string secret_user_data = 2 [debug_redact = true];
|
||
|
}
|