status-desktop/src-cpp/app/modules/main/wallet/controller.cpp

14 lines
305 B
C++

#include <QDebug>
#include "controller.h"
namespace Modules::Main::Wallet
{
Controller::Controller(std::shared_ptr<Wallets::ServiceInterface> walletService, QObject* parent)
: m_walletService(walletService)
, QObject(parent)
{ }
void Controller::init() { }
} // namespace Modules::Main::Wallet