mirror of
https://github.com/google/pebble.git
synced 2025-03-20 02:51:21 +00:00
8 lines
199 B
Protocol Buffer
8 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];
|
|
}
|