This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-zigbee/main.cpp
2017-10-17 14:54:17 +02:00

12 lines
158 B
C++

#include <QCoreApplication>
#include "core.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
Core core;
return a.exec();
}