mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
12 lines
280 B
C++
12 lines
280 B
C++
/**
|
|
* @file services/wikipedia/wikipedia_service.cc
|
|
* @brief WikipediaService constructor implementation.
|
|
*/
|
|
|
|
#include "services/wikipedia_service.h"
|
|
|
|
#include <utility>
|
|
|
|
WikipediaService::WikipediaService(std::unique_ptr<WebClient> client)
|
|
: client_(std::move(client)) {}
|