mirror of
https://github.com/google/pebble.git
synced 2025-03-20 19:01:21 +00:00
9 lines
199 B
Protocol Buffer
9 lines
199 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
import "nanopb.proto";
|
||
|
|
||
|
message MixedMessage {
|
||
|
optional int32 proto2_value = 1 [default = 100];
|
||
|
optional int32 proto3_value = 2 [default = 200, (nanopb).proto3 = true];
|
||
|
}
|