mirror of
https://github.com/google/pebble.git
synced 2025-03-20 02:51:21 +00:00
9 lines
163 B
Protocol Buffer
9 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;
|
|
}
|
|
|