mirror of
https://github.com/google/pebble.git
synced 2025-03-19 18:41:21 +00:00
11 lines
186 B
Protocol Buffer
11 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];
|
|
}
|
|
|