mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2026-05-20 04:05:31 +01: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;
|
|
}
|
|
|