mirror of
https://github.com/google/pebble.git
synced 2025-03-20 11:01:20 +00:00
10 lines
158 B
Protocol Buffer
10 lines
158 B
Protocol Buffer
|
// A very simple protocol definition, consisting of only
|
||
|
// one message.
|
||
|
|
||
|
syntax = "proto2";
|
||
|
|
||
|
message SimpleMessage {
|
||
|
required int32 lucky_number = 1;
|
||
|
}
|
||
|
|