mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2026-01-28 13:20:49 +03:00
6 lines
143 B
C++
6 lines
143 B
C++
#include "Packet.h"
|
|
|
|
Packet::Packet(uint8_t command, const std::vector<uint8_t> &data) {
|
|
this->command = command;
|
|
this->data = data;
|
|
}; |