Files
status-app/src-cpp/app/modules/main/controller.cpp
T
Khushboo Mehta 42da8a2408 feat(@desktop/wallet): move accounts to cpp
created skeleton for wallet_section
added getAccounts api

fixes #4750
2022-02-16 16:01:37 +01:00

17 lines
220 B
C++

#include <QDebug>
#include "controller.h"
namespace Modules
{
namespace Main
{
Controller::Controller(QObject* parent)
: QObject(parent)
{ }
void Controller::init() { }
} // namespace Main
} // namespace Modules