mirror of
https://github.com/google/pebble.git
synced 2025-03-21 19:31:20 +00:00
11 lines
219 B
Protocol Buffer
11 lines
219 B
Protocol Buffer
syntax = "proto3";
|
|
import "nanopb.proto";
|
|
|
|
message SubMessage {
|
|
repeated uint32 rep_uint32 = 1 [(nanopb).max_count = 3];
|
|
}
|
|
|
|
message TestMessage {
|
|
SubMessage submsg = 1 [(nanopb).proto3_singular_msgs = true];
|
|
}
|
|
|