mirror of
https://github.com/google/pebble.git
synced 2025-11-30 19:22:22 -05:00
Import of the watch repository from Pebble
This commit is contained in:
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;
|
||||
}
|
||||
Reference in New Issue
Block a user