mirror of
https://github.com/logos-blockchain/logos-execution-zone-wallet-ui.git
synced 2026-08-09 11:23:13 +00:00
20 lines
414 B
C++
20 lines
414 B
C++
#include "LEZWalletPlugin.h"
|
|
#include "LEZWalletBackend.h"
|
|
|
|
#include <QDebug>
|
|
|
|
LEZWalletPlugin::LEZWalletPlugin(QObject* parent)
|
|
: QObject(parent)
|
|
{
|
|
}
|
|
|
|
LEZWalletPlugin::~LEZWalletPlugin() = default;
|
|
|
|
void LEZWalletPlugin::initLogos(LogosAPI* api)
|
|
{
|
|
if (m_backend) return;
|
|
m_backend = new LEZWalletBackend(api, this);
|
|
setBackend(m_backend);
|
|
qDebug() << "LEZWalletPlugin: backend initialized";
|
|
}
|