| 8 | namespace http { |
| 9 | |
| 10 | HttpRequestHandler::HttpRequestHandler(const HttpConfig& config) |
| 11 | : config_(config) { |
| 12 | ai::logger::log_debug( |
| 13 | "HttpRequestHandler initialized - host: {}, use_ssl: {}", config_.host, |
| 14 | config_.use_ssl); |
| 15 | } |
| 16 | |
| 17 | HttpConfig HttpRequestHandler::parse_base_url(const std::string& base_url) { |
| 18 | HttpConfig config; |
nothing calls this directly
no test coverage detected