mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-09 13:07:03 +03:00
10 lines
154 B
Protocol Buffer
10 lines
154 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package sys;
|
|
import "nanopb.proto";
|
|
|
|
message message_def{
|
|
uint32 datasize = 1;
|
|
bytes data = 2 [(nanopb).type = FT_POINTER];
|
|
}
|