feat(@desktop/wallet): move accounts to cpp

created skeleton for wallet_section
added getAccounts api

fixes #4750
This commit is contained in:
Khushboo Mehta
2022-02-16 16:01:37 +01:00
committed by Khushboo-dev-cpp
parent 0acfd9b50c
commit 42da8a2408
46 changed files with 1417 additions and 327 deletions
+5 -7
View File
@@ -1,18 +1,16 @@
#include "controller.h"
#include "accounts/service_interface.h"
#include "interfaces/module_controller_delegate_interface.h"
#include <QDebug>
#include "controller.h"
namespace Modules
{
namespace Main
{
Controller::Controller(ModuleControllerDelegateInterface* delegate, QObject* parent)
: QObject(parent)
, m_delegate(delegate)
Controller::Controller(QObject* parent)
: QObject(parent)
{ }
void Controller::init() { }
} // namespace Main
} // namespace Modules
} // namespace Modules