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