GPT first

This commit is contained in:
2025-02-02 01:07:48 +05:00
parent 18a6f4bb2c
commit 4e4e3d8a45
4 changed files with 63 additions and 0 deletions

12
src/main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include <QCoreApplication>
#include "backend.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
Backend backend;
backend.start();
return a.exec();
}