mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 20:47:08 +03:00
11 lines
158 B
C++
11 lines
158 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace cspot {
|
|
struct Packet {
|
|
uint8_t command;
|
|
std::vector<uint8_t> data;
|
|
};
|
|
} // namespace cspot
|