Files
squeezelite-esp32/components/spotify/cspot/src/Packet.cpp
Philippe G 898998efb0 big merge
2021-12-18 21:04:23 -08:00

6 lines
137 B
C++

#include "Packet.h"
Packet::Packet(uint8_t command, std::vector<uint8_t> &data) {
this->command = command;
this->data = data;
};