14 lines
183 B
C++
14 lines
183 B
C++
#include <string>
|
|
|
|
class LrcLibCrypt
|
|
{
|
|
private:
|
|
std::string PublishToken;
|
|
std::string prefix;
|
|
std::string nonce;
|
|
|
|
public:
|
|
LrcLibCrypt();
|
|
};
|
|
|
|
// https://lrclib.net/docs
|