mirror of
https://github.com/google/pebble.git
synced 2025-03-23 12:12:19 +00:00
14 lines
208 B
Protocol Buffer
14 lines
208 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
import "nanopb.proto";
|
||
|
|
||
|
message SubMessage {
|
||
|
required uint32 foo = 1;
|
||
|
}
|
||
|
|
||
|
message MyMessage {
|
||
|
oneof oneof {
|
||
|
SubMessage submsg = 1 [(nanopb).submsg_callback = true];
|
||
|
}
|
||
|
}
|