#include "tgbot/Bot.h" #include "tgbot/EventBroadcaster.h" namespace TgBot { Bot::Bot(std::string token, const HttpClient& httpClient) : _token(std::move(token)) , _api(_token, httpClient) , _eventBroadcaster(std::make_unique()) , _eventHandler(getEvents()) { } }