mirror of
https://github.com/google/pebble.git
synced 2025-03-20 11:01:20 +00:00
12 lines
186 B
Protocol Buffer
12 lines
186 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
import "nanopb.proto";
|
||
|
|
||
|
message SubMessage {
|
||
|
repeated int32 foo = 1;
|
||
|
}
|
||
|
|
||
|
message MainMessage {
|
||
|
SubMessage submsg = 1 [(nanopb).proto3_singular_msgs = true];
|
||
|
}
|
||
|
|