mirror of
https://github.com/google/pebble.git
synced 2025-03-20 19:01:21 +00:00
12 lines
206 B
Protocol Buffer
12 lines
206 B
Protocol Buffer
syntax = "proto3";
|
|
import "nanopb.proto";
|
|
|
|
message SubMessage {
|
|
bool boolfield = 1;
|
|
int64 intfield = 2;
|
|
}
|
|
|
|
message TestMessage {
|
|
SubMessage submsg = 1 [(nanopb).proto3_singular_msgs = true];
|
|
}
|
|
|