mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-05-31 17:53:59 +00:00
18 lines
491 B
C++
18 lines
491 B
C++
//
|
|
// Created by aaronpo on 13/05/2026.
|
|
//
|
|
|
|
#ifndef BIERGARTEN_PIPELINE_INCLUDES_SERVICES_ENRICHMENT_MOCK_ENRICHMENT_H_
|
|
#define BIERGARTEN_PIPELINE_INCLUDES_SERVICES_ENRICHMENT_MOCK_ENRICHMENT_H_
|
|
#include <string>
|
|
|
|
#include "enrichment_service.h"
|
|
|
|
class MockEnrichmentService final : public IEnrichmentService {
|
|
public:
|
|
std::string GetLocationContext(const Location& /*loc*/) override {
|
|
return {};
|
|
}
|
|
};
|
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_SERVICES_ENRICHMENT_MOCK_ENRICHMENT_H_
|