mirror of
https://github.com/google/pebble.git
synced 2025-11-16 20:40:55 -05:00
18 lines
174 B
Protocol Buffer
18 lines
174 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message SubMessage1
|
|
{
|
|
uint32 foo = 1;
|
|
}
|
|
|
|
message SubMessage2
|
|
{
|
|
uint32 foo = 1;
|
|
}
|
|
|
|
message SubMessage3
|
|
{
|
|
uint32 foo = 1;
|
|
uint32 bar = 2;
|
|
}
|