mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 17:47:22 +00:00
* Update class diagrams * Implement BoundedChannel and multithreaded logging infra * Integrate logging channel system * Update string concatenations to use std::format * Add pretty print log
13 lines
377 B
C++
13 lines
377 B
C++
/**
|
|
* @file services/wikipedia/wikipedia_service.cc
|
|
* @brief WikipediaService constructor implementation.
|
|
*/
|
|
|
|
#include "services/enrichment/wikipedia_service.h"
|
|
|
|
#include <utility>
|
|
|
|
WikipediaEnrichmentService::WikipediaEnrichmentService(
|
|
std::unique_ptr<WebClient> client, std::shared_ptr<ILogger> logger)
|
|
: client_(std::move(client)), logger_(std::move(logger)) {}
|