mirror of
https://github.com/google/pebble.git
synced 2025-03-21 03:11:21 +00:00
11 lines
226 B
Protocol Buffer
11 lines
226 B
Protocol Buffer
// A very simple protocol definition, consisting of only
|
|
// one message.
|
|
syntax = "proto2";
|
|
|
|
import "sub/unlucky.proto";
|
|
|
|
message SimpleMessage {
|
|
required int32 lucky_number = 1;
|
|
required UnluckyNumber unlucky = 2;
|
|
}
|
|
|