Files
squeezelite-esp32/components/spotify/cspot/src/Packet.cpp
2022-01-09 19:40:18 -08:00

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;
};