mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-11 22:17:17 +03:00
8 lines
186 B
Protocol Buffer
8 lines
186 B
Protocol Buffer
syntax = "proto3";
|
|
import "nanopb.proto";
|
|
package sys;
|
|
message AirPlay {
|
|
option (nanopb_msgopt).msgid = 1001;
|
|
bool enabled = 1;
|
|
uint32 port = 2 [(nanopb).int_size = IS_8];
|
|
} |