git-svn-id: svn://db.shs.com.ru/libs@132 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2016-10-22 18:30:28 +00:00
parent 4b73034114
commit 8bbb661966
10 changed files with 1 additions and 1 deletions

13
telegram_bot/main.cpp Normal file
View File

@@ -0,0 +1,13 @@
#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();
}