mirror of
https://github.com/google/pebble.git
synced 2025-03-20 11:01:20 +00:00
10 lines
178 B
Protocol Buffer
10 lines
178 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
import "nanopb.proto";
|
||
|
|
||
|
message MyMessage {
|
||
|
option (nanopb_msgopt).msgid = 8;
|
||
|
oneof configuration_flash {
|
||
|
MyMessage my_message_v1 = 1;
|
||
|
}
|
||
|
}
|