summaryrefslogtreecommitdiff
path: root/src/Bot.cpp
AgeCommit message (Collapse)Author
2020-11-08Add support to configure the API bot server urlNuno Esculcas
Now creating the bot class it is possible to override the API bot server url that defaults to: 'https://api.telegram.org' This enables you to connect your bot to the local API bot server.
2020-03-22Move method to source file. Put include with boost asio at the first place, ↵Egor Pugin
because otherwise it is compiler error somewhere in files related to include order.
2020-03-17format: add missing headersAlexander Zaitsev
- add missing include headers in different part of tgbot-cpp library, remove unused includes Tested: - Local build
2020-03-15Remove workaround.Egor Pugin
2020-03-15Use make_unique if C++14 and above is available. Kudos to @JellyBrick.Egor Pugin
2020-03-14Init unique_ptr in C++11 style.Egor Pugin
2020-03-14Move Bot ctor in its own file.Egor Pugin