mirror of
https://github.com/google/pebble.git
synced 2025-03-20 11:01:20 +00:00
10 lines
163 B
Protocol Buffer
10 lines
163 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message TestMessage {
|
||
|
optional int32 opt_int = 1;
|
||
|
int32 normal_int = 2;
|
||
|
optional int32 opt_int2 = 3;
|
||
|
int32 normal_int2 = 4;
|
||
|
}
|
||
|
|