blob: 080b9a2a501a9be7fc54d481bd4bf4665f40fe7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "tgbot/net/BoostHttpOnlySslClient.h"
#include "tgbot/Bot.h"
#include "tgbot/EventBroadcaster.h"
#include <memory>
#include <string>
namespace TgBot {
Bot::Bot(std::string token, const HttpClient& httpClient, const std::string& url)
: _token(std::move(token))
, _api(_token, httpClient, url)
, _eventBroadcaster(std::make_unique<EventBroadcaster>())
, _eventHandler(getEvents()) {
}
HttpClient& Bot::_getDefaultHttpClient() {
static BoostHttpOnlySslClient instance;
return instance;
}
}
|