blob: dfe54c5c01131eaad4df70f4e56b245bde89ac22 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <tgbot/tgbot.h>
using namespace TgBot;
int main()
{
CurlHttpClient curlHttpClient;
Bot bot("TOKEN", curlHttpClient);
bot.getApi().deleteWebhook();
auto fileContent = FileTools::read("file.txt");
return 0;
}
|