mirror of
https://github.com/protocolbuffers/protobuf
synced 2026-08-26 02:23:14 -04:00
9 lines
126 B
Protocol Buffer
9 lines
126 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package debug;
|
||
|
|
|
||
|
|
message DebugMsg {
|
||
|
|
int32 id = 1;
|
||
|
|
string secret_user_data = 2 [debug_redact = true];
|
||
|
|
}
|