mirror of
https://github.com/google/pebble.git
synced 2025-09-01 08:25:44 -04:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
37
third_party/nanopb/tests/regression/issue_395/test.proto
vendored
Normal file
37
third_party/nanopb/tests/regression/issue_395/test.proto
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
syntax = "proto3";
|
||||
|
||||
message Error
|
||||
{
|
||||
int32 code = 1;
|
||||
string message = 2;
|
||||
}
|
||||
|
||||
message SubSubAMessage
|
||||
{
|
||||
string somestring = 1;
|
||||
}
|
||||
|
||||
message SubSubBMessage
|
||||
{
|
||||
string somestring = 1;
|
||||
}
|
||||
|
||||
message SubMessage
|
||||
{
|
||||
SubSubAMessage subsubmessageA = 1;
|
||||
repeated SubSubBMessage subsubmessageB = 2;
|
||||
}
|
||||
|
||||
message Reply
|
||||
{
|
||||
enum Result
|
||||
{
|
||||
ERROR = 0;
|
||||
OK = 1;
|
||||
SOME_A = 2;
|
||||
}
|
||||
|
||||
Result result = 1;
|
||||
Error error = 2;
|
||||
SubMessage submessage = 3;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue