mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 17:11:10 +00:00
feat: add empty main module
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#include "controller.h"
|
||||
#include "accounts/service_interface.h"
|
||||
#include "interfaces/module_controller_delegate_interface.h"
|
||||
#include <QDebug>
|
||||
|
||||
namespace Modules
|
||||
{
|
||||
namespace Main
|
||||
{
|
||||
Controller::Controller(ModuleControllerDelegateInterface* d, QObject* parent)
|
||||
: QObject(parent)
|
||||
, m_delegate(d)
|
||||
{ }
|
||||
|
||||
void Controller::init() { }
|
||||
|
||||
} // namespace Main
|
||||
} // namespace Modules
|
||||
Reference in New Issue
Block a user