mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 07:52:44 +01:00
9 lines
157 B
Protocol Buffer
9 lines
157 B
Protocol Buffer
// A very simple protocol definition, consisting of only
|
|
// one message.
|
|
|
|
syntax = "proto2";
|
|
|
|
message SimpleMessage {
|
|
required int32 lucky_number = 1;
|
|
}
|