This repository has been archived on 2020-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
libs/telegram_bot/main.cpp

14 lines
288 B
C++

//#include "mainwindow.h"
#include "execbot.h"
#include <QCoreApplication>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
//MainWindow w;
//w.show();
ExecBot bot;
bot.setBotToken("242608352:AAFrx51P_JhmCjV8CV11Mds-LJk89bpolXE");
return a.exec();
}