2022-02-01 15:48:54 -04:00

18 lines
385 B
C++

#include "controller.h"
#include "accounts/service_interface.h"
#include "interfaces/module_controller_delegate_interface.h"
#include <QDebug>
namespace Modules
{
namespace Main
{
Controller::Controller(ModuleControllerDelegateInterface* delegate, QObject* parent)
: QObject(parent)
, m_delegate(delegate)
{ }
void Controller::init() { }
} // namespace Main
} // namespace Modules