mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 17:11:10 +00:00
feat(@desktop/wallet): move accounts to cpp
created skeleton for wallet_section added getAccounts api fixes #4750
This commit is contained in:
committed by
Khushboo-dev-cpp
parent
0acfd9b50c
commit
42da8a2408
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user