mirror of
https://github.com/yoncodes/BD2PS.git
synced 2026-08-05 06:12:14 +02:00
12 lines
175 B
Protocol Buffer
12 lines
175 B
Protocol Buffer
|
|
message SendLogRequest {
|
|
enum LogType {
|
|
TEXT = 0;
|
|
JSON = 1;
|
|
}
|
|
|
|
optional int32 seq = 1;
|
|
repeated string msg = 2;
|
|
optional SendLogRequest.LogType logType = 3;
|
|
}
|