mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 17:11:10 +00:00
17 lines
220 B
C++
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
|